本文整理匯總了PHP中cron::message方法的典型用法代碼示例。如果您正苦於以下問題:PHP cron::message方法的具體用法?PHP cron::message怎麽用?PHP cron::message使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cron
的用法示例。
在下文中一共展示了cron::message方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: downloadUrl
public static function downloadUrl($url, $path, $name)
{
if (empty($url)) {
throw new Exception('[ERROR] Class cron, function downloadUrl, $url is empty !');
}
if (empty($path)) {
throw new Exception('[ERROR] Class cron, function downloadUrl, $path is empty !');
}
cron::message(sprintf("Class cron, function downloadUrl, de volgende url word aangeroepen: %s, naar %s/%s !", $url, $path, $name));
if (!($fp = fopen($path . '/' . $name, 'w+'))) {
//This is the file where we save the information
cron::message(sprintf("Class cron, function downloadUrl, fopen error !"), 'error');
fclose($fp);
return false;
}
$ch = curl_init(str_replace(' ', '%20', $url));
//Here is the file we are downloading, replace spaces with %20
curl_setopt($ch, CURLOPT_TIMEOUT, 50);
curl_setopt($ch, CURLOPT_FILE, $fp);
// write curl response to file
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
if (false === curl_exec($ch)) {
cron::message(sprintf("Class cron, function downloadUrl, curl_exec error: %s", curl_error($ch)), 'error');
// Close handle
curl_close($ch);
fclose($fp);
return false;
}
// Close handle
curl_close($ch);
fclose($fp);
return true;
}