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.
我在我的系统上使用 WAMP 服务器来执行 php 脚本。
我想test.php从我的主脚本执行一个脚本main.php。
test.php
main.php
为此,我正在使用exec这样的功能exec('php test.php');。在test.php我发表了一项echo声明。
exec
exec('php test.php');
echo
但是当我main.php从浏览器运行我的脚本时,我看不到test.php脚本的输出。
我究竟做错了什么 ?请建议。
你必须给出正确的路径php.exe
php.exe
exec("c:\wamp\<where ever you exe is>/php.exe test.php");
所以它必须是一条正确的路径
使用这个命令
echo exec('php test.php', $output); //this will print your echo statement. print_r($output);