tienes razón seme fue un poco mal el codigo
este es el bueno
Código PHP:
function descomentar($archivo){if(! defined('T_ML_COMMENT')){define('T_ML_COMMENT',T_COMMENT );}else{define('T_DOC_COMMENT',T_ML_COMMENT);}$source=$archivo;$tokens=token_get_all($source);foreach($tokens as $token){if(is_string($token)){$todo.=$token;}else{list($id,$text)=$token;switch($id){case T_COMMENT:case T_ML_COMMENT: case T_DOC_COMMENT: break;default:$todo.=$text;break;}}}return$todo;}
$testo="<!-- begin remove -->texto<!-- end remove -->"; //tu texto
$resultado=descomentar($testo); // resultado texto sin comentarios
print $resultado;
quita todo tipo de comentario:
ejemplo:
http://creaelicita.cl/descomentar.php