Ver Mensaje Individual
  #7 (permalink)  
Antiguo 10/04/2012, 04:21
sylvert
 
Fecha de Ingreso: abril-2012
Mensajes: 10
Antigüedad: 12 años
Puntos: 1
Respuesta: Leer sierta parte de un texto

Código PHP:
<?php 

$linea 
'"Hello and goodbye" "1234" "abcdefghijklmnopqrstu" "ab"'

$partes explode('" "'trim($linea'"')); 

echo 
'<pre>'
print_r($partes); 
echo 
'</pre>';
?>