本文整理匯總了PHP中header::blog方法的典型用法代碼示例。如果您正苦於以下問題:PHP header::blog方法的具體用法?PHP header::blog怎麽用?PHP header::blog使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類header
的用法示例。
在下文中一共展示了header::blog方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dulich
function dulich($path)
{
$path = str_replace('--', '/', $path);
$data_tourism = $this->db->select('*')->from('tourism')->like('link', $path)->get()->result_array();
$header = new header();
$header->blog($data_tourism[0]['name']);
$content = file_get_contents($data_tourism[0]['link']);
if ($content) {
//do nothing
} else {
redirect('/tour-du-lich-blog');
}
$content = str_replace('<script', '<script async', $content);
$content = str_replace('dulich.vnexpress.net', 'myweb.pro.vn/blog/dulich', $content);
$content = str_replace('tuc/', 'tuc--', $content);
$content = str_replace('dong/', 'dong--', $content);
$content = str_replace('van/', 'van--', $content);
$content = str_replace('photo/', 'photo--', $content);
$content = str_replace('video/', 'video--', $content);
$data['content'] = $content;
$this->load->view('tourism/fetch_tourism_data', $data);
}