<?php
class ExceptionX extends Exception{
public $code = "foo";
function __construct(){
$this->code = new stdclass;
}
}
class ErrorX extends Error{
public $code = "foo";
function __construct(){
$this->code = new stdclass;
}
}
$v = new ExceptionX();
var_dump($v->code);
var_dump($v->getCode());
$v = new ErrorX();
var_dump($v->code);
var_dump($v->getCode());
Fatal error: Class 'Error' not found in /in/BoF4U on line 10
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/BoF4U on line 4
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/BoF4U on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/BoF4U on line 4
Process exited with code 255.