
24/08/2010, 12:29
|
 | | | Fecha de Ingreso: mayo-2003 Ubicación: mX
Mensajes: 683
Antigüedad: 21 años, 10 meses Puntos: 60 | |
Respuesta: Como eliminar \(barra invertida) de un texto http://php.net/manual/es/function.stripslashes.php Código PHP: <?php
$str = "Is your name O\'reilly?";
// Outputs: Is your name O'reilly?
echo stripslashes($str);
?> |