视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
源代码在线查看: pecl.php
/** * Channel Validator for the pecl.php.net channel * * PHP 4 and PHP 5 * * @category pear * @package PEAR * @author Greg Beaver * @copyright 1997-2006 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version CVS: $Id: PECL.php,v 1.8 2006/05/12 02:38:58 cellog Exp $ * @link http://pear.php.net/package/PEAR * @since File available since Release 1.4.0a5 */ /** * This is the parent class for all validators */ require_once 'PEAR/Validate.php'; /** * Channel Validator for the pecl.php.net channel * @category pear * @package PEAR * @author Greg Beaver * @copyright 1997-2006 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 * @version Release: 1.6.1 * @link http://pear.php.net/package/PEAR * @since Class available since Release 1.4.0a5 */ class PEAR_Validator_PECL extends PEAR_Validate { function validateVersion() { if ($this->_state == PEAR_VALIDATE_PACKAGING) { $version = $this->_packagexml->getVersion(); $versioncomponents = explode('.', $version); $last = array_pop($versioncomponents); if (substr($last, 1, 2) == 'rc') { $this->_addFailure('version', 'Release Candidate versions must have ' . 'upper-case RC, not lower-case rc'); return false; } } return true; } function validatePackageName() { $ret = parent::validatePackageName(); if ($this->_packagexml->getPackageType() == 'extsrc' || $this->_packagexml->getPackageType() == 'zendextsrc') { if (strtolower($this->_packagexml->getPackage()) != strtolower($this->_packagexml->getProvidesExtension())) { $this->_addWarning('providesextension', 'package name "' . $this->_packagexml->getPackage() . '" is different from extension name "' . $this->_packagexml->getProvidesExtension() . '"'); } } return $ret; } } ?>
|
相关资源 |
|
-
视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
-
讲述了网络拥塞控制协议即tcp友好的传输控制协议
-
使用1520控制器的12232点阵液晶模块的51单片机控制C代码,keil编译通过,使用端口直接连接方法,P1口为数据口,控制线在P3部分端口,详见程序.
-
使用1520控制器的12232点阵液晶模块的51单片机控制C代码,keil编译通过,使用端口直接连接方法,P1口为数据口,控制线在P3部分端口
-
symbian下基于Object Exchange (OBEX)的协议进行数据传输的源代码。
-
I2C是一种工程应用非常广的协议 在FPGA中的实现
-
802.16d(wimax)的协议原版(英文版)
IEEE的802.16协议
-
本文在充分研究了西门子公司 MC35 GSM 模块的性能后 ,总结出一套利用 GSM 网络进行信息传输的技术 ,包括GSM模块的初始化 ,短信的收发与群发 , SIM卡电话本的管理等 ,并提出一种灵活
|