标签: 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变量?