⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constraintfailure.phpm

📁 Professional PHP5 code for this book
💻 PHPM
字号:
<?phprequire_once("constants.phpm");require_once("constraint.phpm");class constraintfailure {  private $_strParameterName;  private $_intVerbMethod;  private $_objFailedConstraintObject;    function __construct($strParameterName, $intVerbMethod, $objFailedConstraintObject) {    $this->_strParameterName = $strParameterName;    $this->_intVerbMethod = $intVerbMethod;    $this->_objFailedConstraintObject = $objFailedConstraintObject;  }    function GetParameterName() {    return($this->_strParameterName);  }    function GetVerbMethod() {    return($this->_intVerbMethod);  }    function GetFailedConstraintObject() {    return($this->_objFailedConstraintObject);  }  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -