在CRON作业中获取参数

时间:2014-05-10 16:22:08

标签: php cron

我有一个FOR循环用于解析xml文件作为部分,但我使用$ _GET参数在URL的循环结束时接收变量发送(meta http-equiv =" Refresh" content =& #34; 0; url ...)。在Web浏览器中一切正常,但我想使用CRON作业自动完成。所以可以这样做吗?我会非常感谢任何建议或示例

我的代码:

    $name = 'tmp_add_xml';
if(isset($_GET['file'])){
    $xmlfile = 'import/'.$_GET['file'].'.xml';
} else {
    $xmlfile = 'import/'.$name.'.xml';
    $xmlurl = 'URL_XML_FILE';

    $downxml = file_get_contents($xmlurl);
    file_put_contents($xmlfile, $downxml); 
}

$xml = simplexml_load_file($xmlfile);
$xml_offer = $xml->xpath("//offer");
$total = count($xml_offer);

if(isset($_GET['x']) && isset($_GET['exist']) && isset($_GET['added'])){
    $x = $_GET['x'];
    $product_exist = $_GET['exist'];
    $product_added = $_GET['added'];
} else {
    $x = $product_exist = $product_added = 0;
}
$limit = $x+1000;
for($z = $x; $z <= $limit; $z++){
    $productid = $xml_offer[$z]->id;

    if(mysql_num_rows(mysql_query("SELECT reference FROM ps_product WHERE reference = '".$productid."'")) > 0){ 
        $product_exist++;
    } else {
        $product_added++;
    }

    if($z==$total){
        echo 'Import 100%';
        exit;
    } elseif($z==$limit){
        print '<meta http-equiv="Refresh" content="0; url='.$_SERVER['PHP_SELF'].'?x='.($x+1).'&file='.$name.'&exist='.$product_exist.'&added='.$product_added.'">';
        exit;
    }
    $x++;

}

URL: ?script_name.php X = VARIABLE&安培;文件= VARIABLE&安培;存在= VARIABLE&安培;加入=变量

1 个答案:

答案 0 :(得分:1)

如果要将参数传递给cron,请使用$argv

<强> sample.php

<?php
print_r($argv);
exit;
?>

...

> php sample.php apples oranges

Array
(
    [0] => sample.php
    [1] => apples
    [2] => oranges
)