<?php
class MyCronTest extends CI_Controller {
public function insert($name,$age)
{
$this->load->model('user_model');
$this->user_model->addItem($name,$age);
echo json_encode(array('return'=>COMPLETE)); //COMPLETE is a constant which is 1
}
}
?>
我具有该功能,我想在尝试task scheduler
的{{1}}中将该参数与参数一起使用
但是这不起作用,即使没有参数我也该如何使用C:\xampp\php\php.exe -f C:/xampp/htdocs/mysite/application/controller/MyCronTest.php insert 'The Name',30
进行操作,Parameter
是否有其他选择?