免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1677 | 回复: 1
打印 上一主题 下一主题

system函数调用php后传递传递参数的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-11-12 19:24 |只看该作者 |倒序浏览
在php.net帮助里面我找到了传递的方法
我在一台版本为4的服务器里面执行可以的

但是为什么在我的服务器版本为PHP5.1.6 (Zend: 2.1.0) Apache/2.2.6 (Fedora)传递的不成功呢??
代码如下,
请大家给我点办法。。。

------------------php.net里面的资料-----------------------
It's important to note that if you are running a series of system() commands in a loop, you need to include the second argument in order for them to run synchonously.

ie)

// this will execute process.php asynchronously; not waiting for completion before executing the next one.
$array = array('apple', 'banana', 'pear');
foreach($array as $i)
{
system("php process.php \"fruit=$i\"");
}

// this will execute process.php 3 times, waiting for the prior command to complete before starting a new one
$array = array('apple', 'banana', 'pear');
foreach($array as $i)
{
system("php process.php \"fruit=$i\"", $status);
}



------------------我的代码--------------------------
test01.php
<?php
               
                $filename1="../test/abcd".$fa.".php";
                $tempg="fdsafdsfdsa";
                $handleg= fopen ($filename1,"w");
                if (!fwrite ($handleg,$tempg)){  
                     die ("create file ".$filename1." err");
                }else{
                        echo 'ok';
                }
                fclose ($handleg);

?>


test.php
<?php

$last_line=system("php test01.php \"fa=$i\" ");

?>

希望高手路过帮忙解决一下

[ 本帖最后由 流行色 于 2007-11-12 19:25 编辑 ]

论坛徽章:
1
技术图书徽章
日期:2013-12-05 23:25:45
2 [报告]
发表于 2007-11-13 23:18 |只看该作者
test01.php

print_r($argv);
extract($argv);
看看结果如何呢?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP