當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。