Código PHP:
<?php
class Web
{
private $_url;
public function __construct($url)
{
$this->_url = $url;
}
public function buscarImagenes()
{
$contents = file_get_contents($this->_url);
if($contents){
$retorno = 'La web esta ON.';
}
else{
$retorno = 'La web esta OFF.';
}
return $retorno;
}
}
$web = new Web('http://www.google.com.ar/');
$web->buscarImagenes();