1
$str = "<div>blahblahblah<b>foofoo</b><i>barbar</i></div>";
我分開兩個部分剪切html內容並保持格式不變?
1-presentation_text
2-full content when click on read more.
$presentation = substr($str,0,23);
<div>blahblahblah<b>foo
$detail = substr($str,23);
foo</b><i>barbar</i></div>
我怎能格式,當它在顯示演示塊和細節塊? 我的意思是
在演示塊應該是:
blahblahblah 富/* foo的具有大膽這裏*/
詳細塊
富 barbar/*富也有大膽*/
這個問題目前還不清楚。 – 2011-06-10 12:28:15
我更新了。你明白了嗎? – newbie 2011-06-10 12:36:03