3

我需要一个有循环的 shell 脚本。在每个循环迭代中,它需要调用一个带有一些参数的 PHP 文件。有什么办法吗?

4

3 回答 3

9

例如,在名为 test.php 的 php 文件中

<?php
//like programs in c language, use $argc, $argv access command line argument number and arguments, uncomment below two line to dump $argc and $argv
//var_dump($argc); //an integer
//var_dump($argv); //an array with arguments
//use args and do anything you want
echo "do my job\n";
exit(0);

然后创建一个名为 test.sh 的 shell 脚本

#! `which bash`
php=`which php`
i=10
while [[ $i -ge 0 ]];
do  
$php test.php 1 2
((i--))
done

把这两个文件放到同一个目录下。然后在里面运行命令terminal

bash test.sh
于 2012-12-13T08:35:22.780 回答
1

如果这意味着 Linux/Unix shell

for i in `seq 4`; do
    php myscript.php param1 param2
done

但是由于 PHP 也有循环,所以您也可以在 PHP 中执行此操作。

for ($i = 0; $i < 4; $i++)
    system("php myscript.php param1 param2");
于 2012-12-13T08:36:17.880 回答
0
#!/bin/sh
#
#Script to test for loop
#
#

    while [condition] 
    do
    php test.file
    done
于 2012-12-13T08:37:24.450 回答