- 论坛徽章:
- 0
|
在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 编辑 ] |
|