[code] [/code]

mokegile · Feb 11, 2012
tanya ini mas : http://i1122.photobucket.com/albums/l527/ambarhasbiyatmoko/tes-1.jpg

gimana caranya yang didalam tag code tersebut diubah ke string?
sedangkan yang diluar tag code di proses ke html?

mhon bantuannya mas :)
Silahkan login untuk menjawab!
1
Loading...
Ellyx Christian · Feb 12, 2012 · 1 Suka · 0 Tidak Suka
coba ini
$text = '[code]lorem ipsum
lorem
lorem ipsum
';
$text = preg_replace_callback(
'/\[code\](.+?)\[\/code\]/',
create_function(
// single quotes are essential here,
// or alternative escape all $ as \$
'$matches',
'return htmlentities($matches[1]);'
),
$text
);
echo $text;
[/code]