[Ruby] Funcion toma()

Iniciado por BigBear, 10 Febrero 2012, 19:02 PM

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

BigBear

Una simple funcion para cargar una pagina web , la funcion retorna el codigo fuente de la pagina cargada.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#Funcion toma()
#Coded By Doddy H

require "net/http"

def toma(web)
  return Net::HTTP.get_response(URI.parse(web)).body
end
 
code = toma("http://127.0.0.1/post.php")
print code

#The End ?