Una más de mis preguntas: ¿qué hice mal en esta clase PHP?
Código PHP:
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.Ver original
<?php class Facebook { 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') { return $source; } public function show() { echo $this->F_page(); } } ?>
¿Qué hice mal?
Espero sus respuestas. Gracias por anticipado.