Codice PHP:
$string = 'olè [img]bla bla bla[/img] come vá?';
$string = preg_replace('/style="(.*?)"/e', 'style_minify("$1")', $string);
function style_minify($text) {
return 'style="' . preg_replace('/([:;]) /', '$1', $text) . '"';
}
echo $string, "\n";