本文整理匯總了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;
}
示例2: setVarde
public function setVarde($varde)
{
if (!Misc::isInt($varde)) {
throw new AktivitetException('$varde måste vara ett heltal', -3);
}
$this->varde = $varde;
}
示例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;
}
示例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());
}
示例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;
}
示例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;
}
示例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;
}