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

📄 class.phonenumber.php

📁 Professional PHP5 code for this book
💻 PHP
字号:
<?php  require_once('class.PropertyObject.php');  class PhoneNumber extends PropertyObject {       function __construct($phoneid) {      $arData = DataManager::getPhoneNumberData($phoneid);      parent::__construct($arData);      $this->propertyTable['phoneid'] = 'phoneid';      $this->propertyTable['id'] = 'phoneid';      $this->propertyTable['entityid'] = 'entityid';      $this->propertyTable['number'] = 'snumber';      $this->propertyTable['extension'] = 'sextension';      $this->propertyTable['type'] = 'stype';    }       function validate() {      if(!$this->number) {            $this->errors['number'] = 'You must supply a phone number.';      }           if(sizeof($this->errors)) {        return false;      } else {        return true;      }    }       function __toString() {      return $this->number .             ($this->extension ? ' x' . $this->extension : '');    }  }?>

⌨️ 快捷键说明

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