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.
我有两个 php 文件。
第一个执行第二个我想用 exec 发送一个参数
我不知道如何获取我在第二个文件中发送的参数
第一个.php:
$params="hello"; shell_exec('php file.php $params > /dev/null 2>/dev/null &')
文件.php:
echo $params;
谢谢!
使用$argv数组
$argv
在你的情况下
echo $argv[1];
$argv包含传递给脚本的任何参数。
见http://php.net/manual/en/reserved.variables.argv.php
尝试echo $argv[1]
echo $argv[1]
从文档中查看此页面