PHP interesse |
|
Hallo,
Ik ben bezig met een scriptje die er als volgt uit ziet:
<?php
error_reporting(E_ALL);
ini_set('display_errors', 'On');
class HabbonlineMySQL {
public $hello = "HelloWorld!";
}
class Habbonline {
static public function mysql()
{
static $mysql;
$mysql = new HabbonlineMySQL;
return $mysql;
}
}
$class = new Habbonline;
$mysql = $class->mysql();
echo $mysql->hello;
?>
<?php class HabbonlineMySQL { public $hello = "HelloWorld!"; } class Habbonline { { $mysql = new HabbonlineMySQL; return $mysql; } } $class = new Habbonline; $mysql = $class->mysql(); ?>
Helaas werkt dit niet, ik krijg een lege pagina, zonder errors.
|