在 python 内置的 web 服务器中,print
在函数中使用时,它会在终端中打印结果...
例如:
Django version 1.3.4, using settings 'parsicore.settings'
Development server is running at http://0.0.0.0:8000/
Using the Werkzeug debugger (http://werkzeug.pocoo.org/)
Quit the server with CONTROL-C.
127.0.0.1 - - [16/Jan/2013 02:02:08] "GET / HTTP/1.1" 200 -
hello ... print 1 2 3
如何在 PHP 内置 Web 服务器中打印这样的内容?
例如我想在终端打印 $_POST 。我php -S 127.0.0.1:3000
用于运行 PHP 内置 Web 服务器。