Studiati questo codice:
<?php
$testo = '[img][/img]';
$testo = preg_replace('#(width\s*=\s*(["\\'])).*?(\2)#si','${1}300${3}', $testo);
$testo = preg_replace('#(height\s*=\s*(["\\'])).*?(\2)#si','${1}300${3}', $testo);
echo(htmlentities($testo));
$testo = "[img][/img]";
$testo = preg_replace('#(width\s*=\s*(["\\'])).*?(\2)#si','${1}300${3}', $testo);
$testo = preg_replace('#(height\s*=\s*(["\\'])).*?(\2)#si','${1}300${3}', $testo);
echo(htmlentities($testo));
?>