<?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());
You have javascript disabled. You will not be able to edit any code.