フレームワークを使用していcodeigniter
ます。トウモロコシタブから関数にパラメータを渡そうとしています。以下に、コードと cron コマンドを投稿しました。
class Test extends CI_Controller {
public function index(){
$this->home(); //shows the home function
}
public function my_test($parameter)
{
//do something here using $parameter;
}
}
cron ジョブ コマンド
10 5 * * * * /usr/bin/php /var/www/myproject/index.php 'test/my_test/2'
私が何をしたのか教えてください。
前もって感謝します