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


PHP Misc::isInt方法代码示例

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


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

示例1: setAnslagstavlaId

 public function setAnslagstavlaId($id)
 {
     if (!Misc::isInt($id)) {
         throw new GruppException('$id måste vara ett heltal', -4);
     }
     // TODO: lägg in kontroll så att man ej kan byta anslagstavla
     $this->anslagstavla_id = $id;
 }
开发者ID:krillo,项目名称:motiomera,代码行数:8,代码来源:Lag.php

示例2: setVarde

 public function setVarde($varde)
 {
     if (!Misc::isInt($varde)) {
         throw new AktivitetException('$varde måste vara ett heltal', -3);
     }
     $this->varde = $varde;
 }
开发者ID:krillo,项目名称:motiomera,代码行数:7,代码来源:Aktivitet.php

示例3: setFodelsear

 public function setFodelsear($ar)
 {
     if ($this->id) {
         Security::demand(USER, $this);
     }
     if (!Misc::isInt($ar) || $ar < 1900 || $ar > 2008) {
         throw new MedlemException('$ar har ett felaktigt värde', -14);
     }
     $this->fodelsear = $ar;
 }
开发者ID:krillo,项目名称:motiomera,代码行数:10,代码来源:Medlem.php

示例4: setAntal

 public function setAntal($antal)
 {
     // TODO: ska antal konverteras till steg?
     if (!Misc::isInt($antal)) {
         throw new StegException('$antal måste vara ett heltal', -5);
     }
     $this->antal = $antal;
     $this->setSteg($antal * $this->getAktivitet()->getVarde());
 }
开发者ID:krillo,项目名称:motiomera,代码行数:9,代码来源:Steg.php

示例5: setAvstand

 public function setAvstand($avstand)
 {
     Security::demand(ADMIN);
     if (!Misc::isInt($avstand)) {
         throw new MalException('$avstand måste vara ett heltal', -2);
     }
     $this->avstand = $avstand;
 }
开发者ID:krillo,项目名称:motiomera,代码行数:8,代码来源:Mal.php

示例6: setForetagId

 public function setForetagId($id)
 {
     if (!Misc::isInt($id)) {
         throw new AnslagstavlaException('$id måste vara ett heltal', -4);
     }
     if ($this->foretag_id) {
         throw new AnslagstavlaException('En anslagstavla kan inte byta företag', -1);
     }
     if (($this->lag_id != 0 || $this->grupp_id != 0) && $id != 0) {
         $this->foretag_id = 0;
         throw new AnslagstavlaException('En anslagstavla kan bara tillhöra en grupp ELLER ett företag ELLER ett lag', -2);
     }
     $this->foretag_id = $id;
 }
开发者ID:krillo,项目名称:motiomera,代码行数:14,代码来源:Anslagstavla.php

示例7: setTs

 public function setTs($ts)
 {
     if (!Misc::isInt($ts)) {
         throw new AnslagstavlaException('$ts mŒste vara ett heltal', -4);
     }
     if ($this->ts) {
         throw new AnslagstavlaException('Du kan inte byta tidsstŠmpel pŒ en rad', -3);
     }
     $this->ts = $ts;
 }
开发者ID:krillo,项目名称:motiomera,代码行数:10,代码来源:AnslagstavlaRad.php


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