Code:
//PHP5
function __construct() {
$this->_constructor();
echo 'PHP5-constructor';
}
Außerdem ist unter PHP4 folgendes nicht verfügbar...
und ein Objekt muss dort anders zugewiesen werden...
Code:
echo 'creating object -- ';
$myct =& new ctest();
echo ' -- object created';