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


PHP Channel::validate方法代码示例

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


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

示例1: get

 public function get($channel, $strict = true)
 {
     $exists = $this->exists($channel, $strict);
     if (!$exists) {
         throw new Exception('Channel ' . $channel . ' does not exist');
     }
     if (1 === $exists) {
         // is a default channel not installed
         return $this->getDefaultChannel($channel);
     }
     $channel = $this->channelFromAlias($channel);
     $cont = file_get_contents($this->channelFileName($channel));
     $a = @unserialize($cont);
     if (!$a || !is_array($a)) {
         throw new Exception('Channel ' . $channel . ' PEAR1 registry file is corrupt');
     }
     try {
         $chan = new Channel($this, $a);
         if ($channel != '__uri') {
             $chan->validate();
         }
         return $chan;
     } catch (\Exception $e) {
         throw new Exception('Channel ' . $channel . ' PEAR1 registry file is invalid channel information', $e);
     }
 }
开发者ID:helgi,项目名称:Pyrus,代码行数:26,代码来源:Pear1.php

示例2: AddChannelToPoint

 public function AddChannelToPoint($pointId)
 {
     $_pointId = $pointId;
     $model = new Channel();
     $res = Channel::model()->findAll('id_point=:id_point ORDER BY internalId ASC', array(':id_point' => $_pointId));
     $internalId = 1;
     if (count($res) > 0) {
         $internalId = $res[count($res) - 1]['internalId'] + 1;
     }
     $model->attributes = array('id_point' => $_pointId, 'internalId' => $internalId);
     if ($model->validate() && $model->save()) {
         $id = $model->getPrimaryKey();
         return array("status" => true, "id" => $id, "internalId" => $internalId);
     } else {
         return array("status" => false, "error" => json_encode($model->getErrors()));
     }
 }
开发者ID:AlexanderKosianchuk,项目名称:rtvgroup,代码行数:17,代码来源:Channel.php


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