- var_dump: documentation ( source)
- error_log: documentation ( source)
<?php
class WorksIn4And8
{
var $int;
function __construct($int)
{
error_log('__construct()');
$this->int = $int;
}
function WorksIn4And8($int)
{
error_log('WorksIn4And8()');
$this->__construct($int);
}
function getInt()
{
return $this->int;
}
}
$obj = new WorksIn4And8(48);
var_dump($obj->getInt());