0

我正在开发基于 CodeIgniter 的项目。我有如下 cron 命令:

0 5 * * * /usr/bin/php /var/www/my-project/index.php 'test/mytest'

这里 test 是控制器, mytest 是函数。现在我想从 cron 命令为 mytest 函数传递一个参数。假设我想传递一个城市名称。

我应该在 cron 命令中进行什么调整以实现我的目标。

谢谢

4

1 回答 1

2

您可以像在应用程序中一样传递参数。

test/mytest/cityName

其中 cityName 是城市的任何名称。

您的测试控制器应类似于:

class Test extends Controller
{
    .
    .
    .

    function mytest($cityName = '')
    {
        echo $cityName;
    }
}
于 2013-03-05T06:20:49.507 回答