marciano79 Posted August 18, 2009 Report Share Posted August 18, 2009 (edited) Hola, aqui dejo mi primer aporte, espero que les sirva a mas de alguno, es un script en php que llama a los indicadores económicos del banco central de chile http://www.bcentral.cl/ es un codigo muy simple pero a su ves muy efectivo, ahora solo tienen que cambiar la variable "palabra" por el indicador que ustedes necesiten y listo, en el codigo a parece la UTM, pero si quiero el valor del euro, remplazo UTM por Euro y asi susecibamente.... este es el script <?php $url = "http://www.bcentral.cl/esp/"; echo ("UTM"); $palabra = "UTM"; $x = 1; //evita tags <! (invisibles) $fd = @fopen($url, "r"); while ($line=@fgets($fd,1000)){ $pos = strpos ($line, $palabra); if ($pos){ if ($x == 1){ //aquí no hacer nada hacia a bajo //evita tag invisible $x = 2; }else{ $glosa = " $"; $line2=fgets($fd,1000); echo strip_tags($glosa.trim($line2)); } } } @fclose ($fd); ?> Bueno ojala comenten..................o sino Si esta mal el lugar que publique esto ruego que me disculpen ya que es mi primer aporte, y si es asi ojala lo cambien, bueno eso, ojala a mas de alguno le sirva. Edited August 18, 2009 by marciano79 Link to comment Share on other sites More sharing options...
the_garg Posted August 18, 2009 Report Share Posted August 18, 2009 wenas cumpa te las mandaste justo andaba buscando algo asi vale por tu aporte sigue asi Link to comment Share on other sites More sharing options...
ESFAXOR Posted August 19, 2009 Report Share Posted August 19, 2009 simpático el code buen trabajo y sí, si va acá ;) salu2 Link to comment Share on other sites More sharing options...
marciano79 Posted August 19, 2009 Author Report Share Posted August 19, 2009 Gracias espero que les aya servido tanto como ami, saludos. Link to comment Share on other sites More sharing options...
Bartman forever Posted August 27, 2009 Report Share Posted August 27, 2009 Exelente compa se paso se agradece bastante. Link to comment Share on other sites More sharing options...
kupan Posted September 4, 2009 Report Share Posted September 4, 2009 no me funciona pero me dice que tengo que revisar si todos los elementos esten bien cerrados, les funciono filete a ustedes???? dejen la pagina pa cachar que onda porfa Link to comment Share on other sites More sharing options...
tapiarodrigo Posted September 11, 2009 Report Share Posted September 11, 2009 Se agradece el aporte Link to comment Share on other sites More sharing options...
zerovirus555 Posted October 26, 2009 Report Share Posted October 26, 2009 gracias, necesitaba esto. Link to comment Share on other sites More sharing options...
Tecktonik Posted October 27, 2009 Report Share Posted October 27, 2009 funciona sin dramas gracias perrin Link to comment Share on other sites More sharing options...
Alcarin Posted November 1, 2009 Report Share Posted November 1, 2009 buu justo que nesecito esto y no me funciona :S <?php $url = "http://www.bcentral.cl/esp/"; echo ("UTM"); $palabra = "UTM"; $x = 1; //evita tags <! (invisibles) $fd = @fopen($url, "r"); while ($line=@fgets($fd,1000)){ $pos = strpos ($line, $palabra); if ($pos){ if ($x == 1){ //aquí no hacer nada hacia a bajo //evita tag invisible $x = 2; }else{ $glosa = " $"; $line2=fgets($fd,1000); echo strip_tags($glosa.trim($line2)); } } } @fclose ($fd); ?> es copy paste de ese cod nomas no? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now