Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用内置的 php 网络服务器,这是我在我的 php 文件中编写但无法正常工作的代码。
exec("php -S localhost:8000 -t /home/test/");
有什么问题吗?
谢谢
尝试运行:
$lines = system("php -S localhost:8000 -t /home/test/", $output); var_dump($output, $lines);
然后你应该看看有什么问题。