Ayuda con Regex

Iniciado por BlackM4ster, 19 Abril 2014, 14:17 PM

0 Miembros y 1 Visitante están viendo este tema.

BlackM4ster

Hola, estoy intentando sacar un valor de una web con Regex y PHP, pero esque no soy capaz :laugh: me siento más idiota jajajaja a ver si alguien me puede echar una mano

Tengo éste codigo, y quiero sacar el value

Código (php) [Seleccionar]
# Sacamos el SOURCE
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://accounts.google.com/ServiceLogin");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36');
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt");
curl_setopt($ch, CURLOPT_REFERER, "https://google.com/");
$html = curl_exec($ch);

# Parseamos el GALX
$busqueda = '/<input name="GALX" type="hidden" value="([^"]*)">/';
preg_match($busqueda, $html, $match);
print_r($match);
//ALGO FALLA, NO HAY COINCIDENCIAS

# Ver el codigo fuente que estamos parseando
echo htmlentities($html);
//Se puede ver que existe ese trozo de código


EDITO: He resuelto el problema, al parecer, el problema eran los espacios y los posibes saltos de linea

Código (php) [Seleccionar]
# Parseamos el GALX
$busqueda = '/<input name="GALX"[\s]+type="hidden"[\s]+value="([^"]*)">/';
preg_match($busqueda, $html, $match);
echo $match[1];
- Pásate por mi web -
https://codeisc.com