有人能告訴我這個代碼是否與codeigniter 3.0兼容? 如果不是,應該如何格式化?這是Codeigniter 3.0兼容嗎?
if (! function_exists('get_site_url'))
{
function get_site_url($data){
$CI =& get_instance();
//$data = '';
//echo base_url(); exit;
$data =str_replace('{SITE_URL}',base_url(),$data);
return $data;
}
}
你試過了嗎?<?php echo get_site_url($ common_row ['services']);?>'in view? –
嗨,我試過,這次錯誤沒有彈出,但沒有內容出現... print_r($ common_row);死();回顯數字0(零)。 謝謝 – Luc