如何在exec中传递php变量?

时间:2015-09-08 11:38:44

标签: php variables

我试图在exec()中传递php变量,但我发现没有输出。

first.php

echo exec('php prog.php $var1 $var2');

second.php

$file = 'people.txt';

$person = $argv;

file_put_contents($file, $argv, FILE_APPEND | LOCK_EX);

如何在exec()中传递php变量?

0 个答案:

没有答案