IXR_Error::__construct
PHP5 constructor.
Method of the class: IXR_Error{}
No Hooks.
Returns
null. Nothing (null).
Usage
$IXR_Error = new IXR_Error(); $IXR_Error->__construct( $code, $message );
- $code(required)
- .
- $message(required)
- .
IXR_Error::__construct() IXR Error:: construct code WP 7.0
function __construct( $code, $message )
{
$this->code = $code;
$this->message = htmlspecialchars($message);
}