我使用BBCode助手。 輔助代碼:codeigniter解析和替換bbcode
function parse_bbcode($str = ''){
$find = array(
"'\[v\](.*?)\[/v\]'is"
);
$replace = array(
'<video>\1</video>'
);
return preg_replace($find, $replace, $str);
}
控制器:
$this->load->helper('bbcode');
$data['news'] = $this->news_model->get_news($config['per_page'], $this->uri->segment(3, 1));
foreach ($data['news'] as $key=>$val)
{
parse_bbcode($data['news'][$key]['description']);
}
例如,我想替換[V] VID [/ V]到VID。 替換不起作用(沒有任何反應)。我做錯了什麼?
不工作怎麼樣?你期望發生什麼? – Almo 2013-02-18 17:06:03
對不起,我忘了說我想要什麼。我更新了第一篇文章。 – Vitaliy 2013-02-18 17:15:08