本文整理汇总了PHP中Self::url_get_contents方法的典型用法代码示例。如果您正苦于以下问题:PHP Self::url_get_contents方法的具体用法?PHP Self::url_get_contents怎么用?PHP Self::url_get_contents使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Self
的用法示例。
在下文中一共展示了Self::url_get_contents方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: CurrenyRatesUpdate
public static function CurrenyRatesUpdate()
{
ini_set('max_execution_time', 150000);
ini_set("memory_limit", "128M");
$max_date_sql = "select MAX(day) day from currency_rates";
$max_date_res = Yii::app()->db->createCommand($max_date_sql)->queryAll(true);
//var_dump($max_date_res[0]["day"]);
//exit;
$start_date = date($max_date_res[0]["day"]);
// date("2000-01-01"); // date('Y-m-d', strtotime('-1 years'));
$start_date = strtotime($start_date);
$start_date = strtotime("+1 day", $start_date);
$start_date = date('Y-m-d', $start_date);
$currencies = ['EUR', 'JPY', 'GBP', 'AUD', 'CHF', 'CAD', 'MXN', 'CNY', 'CNH', 'NZD', 'SEK', 'RUB', 'DKK', 'NOK', 'HKD', 'SGD', 'TRY', 'KRW', 'ZAR', 'BRL', 'INR'];
while (strtotime($start_date) <= strtotime("now")) {
$existing_rate = CurrencyRates::model()->findByAttributes(['day' => $start_date]);
if (count($existing_rate) == 0) {
$currency_rates = new CurrencyRates();
$currency_rates->day = $start_date;
foreach ($currencies as $cur) {
$currency_rates->{$cur} = 1;
$Url = "http://currencies.apps.grandtrunk.net/getrate/" . $start_date . "/" . $cur . "/USD";
$get_rate = Self::url_get_contents($Url);
if ($get_rate >= 0) {
$currency_rates->{$cur} = $get_rate;
}
}
$currency_rates->save();
}
///+one day//
$start_date = strtotime($start_date);
$start_date = strtotime("+1 day", $start_date);
$start_date = date('Y-m-d', $start_date);
}
}