Quizas los errores no se muestran porque tiene la directiva display_erros del PHP.INI Off
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú#!/usr/bin/perl
$text = 'hola 3455345 sdfsdf 345435,3454 sdfsdf j ksjdh skdjfh 1.233.555,34534 asdasd as 344.34 qweqwe 23,324.324 qweqwe -234324324';
while($text =~ m/(?:\s)([\d\.]+\,\d+(?=\s)|\d+\,\d+(?=\s)|\d+(?=\s)|\-\d+)/g)
{
print $1, "\n";
}
3455345
345435,3454
1.233.555,34534
-234324324
<?php
$txt = "hola 3455345 sdfsdf 345435,3454 sdfsdf j ksjdh skdjfh 1.233.555,34534 asdasd as 344.34 qweqwe 23,324.324 qweqwe -234324324";
preg_match_all("/([\d\-\,\.]+)/", $txt, $captura, PREG_SET_ORDER);
foreach ($captura as $salida):
echo $salida[1];
echo "<br>";
endforeach;
?>
3455345
345435,3454
1.233.555,34534
344.34
23,324.324
-234324324
hola 3455345 sdfsdf 345435,3454 sdfsdf j ksjdh skdjfh 1.233.555,34534 asdasd as 344.34 qweqwe 23,324.324 qweqwe -234324324
<?php
function get($site)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.125 Safari/533.4');
curl_setopt($ch,CURLOPT_REFERER, 'http://www.google.com');
curl_setopt($ch, CURLOPT_URL, $site);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
return curl_exec($ch);
curl_close($ch);
}
$contenido = get('http://telefonica.net/web2/meteosantomera/wx.htm');
//echo $contenido;
preg_match('/<font color="#0000ff" face="Arial" size="5"><b>([\d\.]+)/', $contenido, $temp);
echo $temp[1]."<br>";
preg_match('/<small><font face="Arial">([\d\.]+)/', $contenido, $puntorocio);
echo $puntorocio[1]."<br>";
preg_match('/face="Arial"><small>([\d\%]+)/', $contenido, $humedad);
echo $humedad[1]."<br>";
preg_match('/l"><small>(\d+\.\w+)/', $contenido, $barometro);
echo $barometro[1]."<br>";
preg_match('/rial">((?i)[a-z]{1,2}(?-i))</', $contenido, $direcciondelviento);
echo $direcciondelviento[1];
?>
17.9
7.0
49%
1015.21mb
NO