如何运行这个PHP命令?

时间:2014-05-24 18:29:24

标签: php web vps

我有无法运行的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文件。

1 个答案:

答案 0 :(得分:0)

想要使用shell_exec。

$file_loc = dirname(__FILE__);
require($file_loc.'/test2.php');

应该做你想做的事。