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_agi 的扩展
exten => 8380,n,AGI(php_falup.agi,${MSISDN},${var})
php_agiscript 到 grep 值
<? //require 'phpagi.php'; require('include/phpagi-2.20/phpagi.php'); $agi = new AGI(); $Variable =$agi->request[agi_arg_1,agi_arg_2];
我正在尝试这是正确的。
您可以通过以下方式访问传递的变量
$var1=$argv[1]; $var2=$argv[2];