PHP in command line
问题 Using Python I can test my code in the terminal / command line by typing python python> print "hello world" I would like to do this with PHP too, but when typing: php echo "hello world"; it does not work.. Is this possible? what should I do? A quick search on the internet gives a lot of results that call an actual .php file to run. I only want to test a single sentence if possible, without creating files and stuff. 回答1: Try php -a which starts an interactive PHP shell. Be aware that this