# The PHP 8 container image ![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green) PHP is a general-purpose scripting language used primarily for server-side web development. It can be used directly, embedded in HTML files, or executed via a server-side Apache2 module or CGI scripts. ## How to use the image This image ships with the PHP interpreter as the entrypoint. The image is intended to be used to execute PHP scripts or PHP commands directly. To launch an interactive shell in a container, use the following command: ```ShellSession $ podman run --rm -it registry.opensuse.org/opensuse/bci/php:8 Interactive mode enabled php > echo 5+8; 13 ``` You can also use the container instead of the PHP interpreter to execute PHP scripts: ```ShellSession $ cat /tmp/test.php