我有无法运行的PHP代码。
$add_file_location = dirname(__FILE__);
$shell_cmd = "php {$add_file_location}/test2.php mytest > /dev/null &";
shell_exec($shell_cmd);
如何运行代码以便它可以在web主机或vps上运行test2.php文件。
答案 0 :(得分:0)
你不想要使用shell_exec。
$file_loc = dirname(__FILE__);
require($file_loc.'/test2.php');
应该做你想做的事。