Ver Mensaje Individual
  #7 (permalink)  
Antiguo 18/12/2014, 15:57
Avatar de iEnrique
iEnrique
 
Fecha de Ingreso: abril-2013
Ubicación: España
Mensajes: 346
Antigüedad: 11 años, 7 meses
Puntos: 5
Respuesta: Problema PHP Simple HTML DOM

El código lo tengo ahora así:

Código PHP:
Ver original
  1. $options = array(
  2.         CURLOPT_URL            => "https://www.habbo.es/habblet/habbosearchcontent?searchString=anen100",
  3.         CURLOPT_RETURNTRANSFER => true,        
  4.         CURLOPT_HEADER         => false,        
  5.         CURLOPT_FOLLOWLOCATION => true,          
  6.         CURLOPT_ENCODING       => "",          
  7.         CURLOPT_USERAGENT      => "spider",      
  8.         CURLOPT_AUTOREFERER    => true,      
  9.         CURLOPT_CONNECTTIMEOUT => 120,          
  10.         CURLOPT_TIMEOUT        => 120,          
  11.         CURLOPT_MAXREDIRS      => 10,      
  12.         CURLOPT_COOKIESESSION => true,      
  13.         CURLOPT_POST           => 1,            
  14.         CURLOPT_SSL_VERIFYHOST => 0,            
  15.         CURLOPT_SSL_VERIFYPEER => false,
  16.         CURLOPT_SSLVERSION     => CURL_SSLVERSION_TLSv1,
  17.         CURLOPT_VERBOSE        => 1                
  18. );
  19. $page = curl_init("https://www.habbo.es/habblet/habbosearchcontent?searchString=anen100");
  20. curl_setopt_array($options, $page);
  21. $content = curl_exec($page);
  22. if($content === false)
  23. {
  24.     echo 'Curl error: ' . curl_error($ch);
  25. }
  26. else
  27. {
  28.     echo 'Operación completada sin errores';
  29. }
  30. curl_close($page);
  31. $start = explode('<b>anen100</b><br />', $content, 2);
  32. $end = explode('</div>', $start[1], 2);
  33. $motto = substr(trim($end[0]), 0, 16);
  34. echo $motto;