本文整理汇总了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;
}