### Description The following code: ```php #!/opt/bin/php-cli -S0.0.0.0:8000 <?php echo("Hello, World!"); ``` Resulted in this output: ``` #!/opt/bin/php-cli -S0.0.0.0:8000 Hello, World! ``` But I expected this output instead: ``` Hello, World! ``` The shebang is properly stripped when you just run a PHP script like this: ```php #!/opt/bin/php-cli <?php echo("Hello, World!"); ``` ### PHP Version PHP 8.3 ### Operating System Entware