Ver Mensaje Individual
  #10 (permalink)  
Antiguo 12/03/2011, 13:03
Avatar de enlinea777
enlinea777
 
Fecha de Ingreso: mayo-2008
Ubicación: frente al pc
Mensajes: 1.830
Antigüedad: 16 años, 5 meses
Puntos: 127
Respuesta: ayuda con regexp

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

Última edición por enlinea777; 12/03/2011 a las 13:18