当前位置: 首页>>代码示例>>PHP>>正文


PHP PEAR_Validate类代码示例

本文整理汇总了PHP中PEAR_Validate的典型用法代码示例。如果您正苦于以下问题:PHP PEAR_Validate类的具体用法?PHP PEAR_Validate怎么用?PHP PEAR_Validate使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了PEAR_Validate类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _validateDependencies

 function _validateDependencies()
 {
     $structure = array('required', '*optional', '*group->name->hint');
     if (!$this->_stupidSchemaValidate($structure, $this->_packageInfo['dependencies'], '<dependencies>')) {
         return false;
     }
     foreach (array('required', 'optional') as $simpledep) {
         if (isset($this->_packageInfo['dependencies'][$simpledep])) {
             if ($simpledep == 'optional') {
                 $structure = array('*package', '*subpackage', '*extension');
             } else {
                 $structure = array('php', 'pearinstaller', '*package', '*subpackage', '*extension', '*os', '*arch');
             }
             if ($this->_stupidSchemaValidate($structure, $this->_packageInfo['dependencies'][$simpledep], "<dependencies><{$simpledep}>")) {
                 foreach (array('package', 'subpackage', 'extension') as $type) {
                     if (isset($this->_packageInfo['dependencies'][$simpledep][$type])) {
                         $iter = $this->_packageInfo['dependencies'][$simpledep][$type];
                         if (!isset($iter[0])) {
                             $iter = array($iter);
                         }
                         foreach ($iter as $package) {
                             if ($type != 'extension') {
                                 if (isset($package['uri'])) {
                                     if (isset($package['channel'])) {
                                         $this->_UrlOrChannel($type, $package['name']);
                                     }
                                 } else {
                                     if (!isset($package['channel'])) {
                                         $this->_NoChannel($type, $package['name']);
                                     }
                                 }
                             }
                             $this->{"_validate{$type}Dep"}($package, "<{$simpledep}>");
                         }
                     }
                 }
                 if ($simpledep == 'optional') {
                     continue;
                 }
                 foreach (array('php', 'pearinstaller', 'os', 'arch') as $type) {
                     if (isset($this->_packageInfo['dependencies'][$simpledep][$type])) {
                         $iter = $this->_packageInfo['dependencies'][$simpledep][$type];
                         if (!isset($iter[0])) {
                             $iter = array($iter);
                         }
                         foreach ($iter as $package) {
                             $this->{"_validate{$type}Dep"}($package);
                         }
                     }
                 }
             }
         }
     }
     if (isset($this->_packageInfo['dependencies']['group'])) {
         $groups = $this->_packageInfo['dependencies']['group'];
         if (!isset($groups[0])) {
             $groups = array($groups);
         }
         $structure = array('*package', '*subpackage', '*extension');
         foreach ($groups as $group) {
             if ($this->_stupidSchemaValidate($structure, $group, '<group>')) {
                 if (!PEAR_Validate::validGroupName($group['attribs']['name'])) {
                     $this->_invalidDepGroupName($group['attribs']['name']);
                 }
                 foreach (array('package', 'subpackage', 'extension') as $type) {
                     if (isset($group[$type])) {
                         $iter = $group[$type];
                         if (!isset($iter[0])) {
                             $iter = array($iter);
                         }
                         foreach ($iter as $package) {
                             if ($type != 'extension') {
                                 if (isset($package['uri'])) {
                                     if (isset($package['channel'])) {
                                         $this->_UrlOrChannelGroup($type, $package['name'], $group['name']);
                                     }
                                 } else {
                                     if (!isset($package['channel'])) {
                                         $this->_NoChannelGroup($type, $package['name'], $group['name']);
                                     }
                                 }
                             }
                             $this->{"_validate{$type}Dep"}($package, '<group name="' . $group['attribs']['name'] . '">');
                         }
                     }
                 }
             }
         }
     }
 }
开发者ID:racontemoi,项目名称:mamp,代码行数:90,代码来源:Validator.php

示例2: parsePackageName


//.........这里部分代码省略.........
                 $components['host'] = array_shift($parts);
                 if (count($parts) > 1) {
                     $components['path'] = array_pop($parts);
                     $components['host'] .= '/' . implode('/', $parts);
                 } else {
                     $components['path'] = implode('/', $parts);
                 }
             } else {
                 $components['host'] = $defaultchannel;
             }
         } else {
             if (strpos($components['path'], '/')) {
                 $parts = explode('/', $components['path']);
                 $components['path'] = array_pop($parts);
                 $components['host'] .= '/' . implode('/', $parts);
             }
         }
         if (is_array($param)) {
             $param['package'] = $components['path'];
         } else {
             $param = array('package' => $components['path']);
             if (isset($components['host'])) {
                 $param['channel'] = $components['host'];
             }
         }
         if (isset($components['fragment'])) {
             $param['group'] = $components['fragment'];
         }
         if (isset($components['user'])) {
             $param['user'] = $components['user'];
         }
         if (isset($components['pass'])) {
             $param['pass'] = $components['pass'];
         }
         if (isset($components['query'])) {
             parse_str($components['query'], $param['opts']);
         }
         // check for extension
         $pathinfo = pathinfo($param['package']);
         if (isset($pathinfo['extension']) && in_array(strtolower($pathinfo['extension']), array('tgz', 'tar'))) {
             $param['extension'] = $pathinfo['extension'];
             $param['package'] = substr($pathinfo['basename'], 0, strlen($pathinfo['basename']) - 4);
         }
         // check for version
         if (strpos($param['package'], '-')) {
             $test = explode('-', $param['package']);
             if (count($test) != 2) {
                 return PEAR::raiseError('parsePackageName(): only one version/state ' . 'delimiter "-" is allowed in "' . $saveparam . '"', 'version', null, null, $param);
             }
             list($param['package'], $param['version']) = $test;
         }
     }
     // validation
     $info = $this->channelExists($param['channel']);
     if (PEAR::isError($info)) {
         return $info;
     }
     if (!$info) {
         return PEAR::raiseError('unknown channel "' . $param['channel'] . '" in "' . $saveparam . '"', 'channel', null, null, $param);
     }
     $chan = $this->getChannel($param['channel']);
     if (PEAR::isError($chan)) {
         return $chan;
     }
     if (!$chan) {
         return PEAR::raiseError("Exception: corrupt registry, could not " . "retrieve channel " . $param['channel'] . " information", 'registry', null, null, $param);
     }
     $param['channel'] = $chan->getName();
     $validate = $chan->getValidationObject();
     $vpackage = $chan->getValidationPackage();
     // validate package name
     if (!$validate->validPackageName($param['package'], $vpackage['_content'])) {
         return PEAR::raiseError('parsePackageName(): invalid package name "' . $param['package'] . '" in "' . $saveparam . '"', 'package', null, null, $param);
     }
     if (isset($param['group'])) {
         if (!PEAR_Validate::validGroupName($param['group'])) {
             return PEAR::raiseError('parsePackageName(): dependency group "' . $param['group'] . '" is not a valid group name in "' . $saveparam . '"', 'group', null, null, $param);
         }
     }
     if (isset($param['state'])) {
         if (!in_array(strtolower($param['state']), $validate->getValidStates())) {
             return PEAR::raiseError('parsePackageName(): state "' . $param['state'] . '" is not a valid state in "' . $saveparam . '"', 'state', null, null, $param);
         }
     }
     if (isset($param['version'])) {
         if (isset($param['state'])) {
             return PEAR::raiseError('parsePackageName(): cannot contain both ' . 'a version and a stability (state) in "' . $saveparam . '"', 'version/state', null, null, $param);
         }
         // check whether version is actually a state
         if (in_array(strtolower($param['version']), $validate->getValidStates())) {
             $param['state'] = strtolower($param['version']);
             unset($param['version']);
         } else {
             if (!$validate->validVersion($param['version'])) {
                 return PEAR::raiseError('parsePackageName(): "' . $param['version'] . '" is neither a valid version nor a valid state in "' . $saveparam . '"', 'version/state', null, null, $param);
             }
         }
     }
     return $param;
 }
开发者ID:adisonc,项目名称:MaineLearning,代码行数:101,代码来源:Registry.php

示例3: validateStability

 /**
  * @access protected
  */
 function validateStability()
 {
     $ret = true;
     $packagestability = $this->_packagexml->getState();
     $apistability = $this->_packagexml->getState('api');
     if (!PEAR_Validate::validState($packagestability)) {
         $this->_addFailure('state', 'invalid release stability "' . $this->_packagexml->getState() . '", must be one of: ' . implode(', ', PEAR_Validate::getValidStates()));
         $ret = false;
     }
     $apistates = PEAR_Validate::getValidStates();
     array_shift($apistates);
     // snapshot is not allowed
     if (!in_array($apistability, $apistates)) {
         $this->_addFailure('state', 'invalid API stability "' . $this->_packagexml->getState('api') . '", must be one of: ' . implode(', ', $apistates));
         $ret = false;
     }
     return $ret;
 }
开发者ID:arkosoft,项目名称:S-Admin,代码行数:21,代码来源:Validate.php

示例4: validatePackageName

 function validatePackageName()
 {
     $ret = parent::validatePackageName();
     if ($this->_packagexml->getPackageType() == 'extsrc') {
         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;
 }
开发者ID:laiello,项目名称:punchcms,代码行数:10,代码来源:PECL.php


注:本文中的PEAR_Validate类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。