本文整理匯總了PHP中stats_str_getcsv函數的典型用法代碼示例。如果您正苦於以下問題:PHP stats_str_getcsv函數的具體用法?PHP stats_str_getcsv怎麽用?PHP stats_str_getcsv使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了stats_str_getcsv函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: stats_get_remote_csv
function stats_get_remote_csv($url)
{
$method = 'GET';
$timeout = 90;
$user_id = JETPACK_MASTER_USER;
$get = Jetpack_Client::remote_request(compact('url', 'method', 'timeout', 'user_id'));
$get_code = wp_remote_retrieve_response_code($get);
if (is_wp_error($get) || 2 != intval($get_code / 100) && 304 != $get_code || empty($get['body'])) {
return array();
// @todo: return an error?
} else {
return stats_str_getcsv($get['body']);
}
}
示例2: stats_get_remote_csv
function stats_get_remote_csv($url)
{
$url = clean_url($url, null, 'url');
// Yay!
if (ini_get('allow_url_fopen')) {
$fp = @fopen($url, 'r');
if ($fp) {
//stream_set_timeout($fp, $timeout); // Requires php 4.3
$data = array();
while ($remote_read = fgetcsv($fp, 1000)) {
$data[] = $remote_read;
}
fclose($fp);
return $data;
}
}
// Boo - we need to use wp_remote_fopen for maximium compatibility
if (!($csv = wp_remote_fopen($url))) {
return false;
}
return stats_str_getcsv($csv);
}