Buenas noches a todos (tengo 11:14 pm).
Una más de mis preguntas: ¿qué hice mal en esta clase PHP?
Código PHP:
Ver original<?php
class Facebook {
private $options = array( CURLOPT_SSL_VERIFYPEER => FALSE,
CURLOPT_RETURNTRANSFER => TRUE
);
public function F_get($username, $data = 'id') {
$return = NULL;
if (!$result->error->code) {
curl_setopt($cURL2, CURLOPT_URL
, 'https://graph.facebook.com/' . urlencode($username) . '/picture?redirect=false&width=75&height=75'); if ($data == 'id') {
$return = $result->id;
}
if ($data = 'name') {
$return = $result->name;
}
if ($data == 'username') {
$return = $result->username;
}
if ($data == 'gender') {
$return = $result->gender;
}
if ($data == 'picture') {
$return = $result2->data->url;
}
}
}
private function F_page($lURI = 'login.php') {
curl_setopt($cURL, CURLOPT_URL
, 'https://www.facebook.com'); $source = str_replace('https://www.facebook.com/login.php?login_attempt=1', $lURI, $source); return $source;
}
public function show() {
echo $this->F_page();
}
}
?>
La cuestión principal es en el método
Facebook->show(), el cual al ejecutarlo no muestra nada, y se podría decir que es un NULL.
¿Qué hice mal?
Espero sus respuestas. Gracias por anticipado.