嗨..我需要一个 cakePHP 脚本的帮助,该脚本将在指定的时间间隔后刷新或调用控制器中的函数。
public function testwebservices(){
ini_set("soap.wsdl_cache_enabled","0");
$options = array(
'soap_version'=>SOAP_1_2,
'exceptions'=>true,
'trace'=>1,
'cache_wsdl'=>WSDL_CACHE_NONE
);
$wsdl = "http://example.com/service.asmx?wsdl";
$client = new SoapClient($wsdl,$options);
$lastrec = rec5000;
$rec = $client->GetReceipt(array('txnRef'=>$lastrec));
$result = $rec->GetReceiptRez;
我想调用上述函数,使其在指定时间后自动执行。
先感谢您