本文整理汇总了PHP中SpoonFilter::isSmallerThan方法的典型用法代码示例。如果您正苦于以下问题:PHP SpoonFilter::isSmallerThan方法的具体用法?PHP SpoonFilter::isSmallerThan怎么用?PHP SpoonFilter::isSmallerThan使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SpoonFilter
的用法示例。
在下文中一共展示了SpoonFilter::isSmallerThan方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setPasUsu
public function setPasUsu($passwordUsuario)
{
if (SpoonFilter::isSmallerThan(40, strlen($passwordUsuario)) && SpoonFilter::isString($passwordUsuario) && SpoonFilter::isAlphaNumeric($passwordUsuario)) {
$this->passwdUsu = sha1($passwordUsuario);
} else {
echo "Introduzca una contraseña correcta, use sólo números y letras";
exit;
}
}
示例2: testIsSmallerThan
public function testIsSmallerThan()
{
$this->assertFalse(SpoonFilter::isSmallerThan(1, 10));
$this->assertFalse(SpoonFilter::isSmallerThan(-10, -1));
$this->assertFalse(SpoonFilter::isSmallerThan(-1, 10));
$this->assertTrue(SpoonFilter::isSmallerThan(1, -10));
$this->assertFalse(SpoonFilter::isSmallerThan(0, 0));
}
示例3: isSmallerThan
/**
* Checks if the field is smaller than a given maximum.
*
* @return bool
* @param int $maximum The maximum.
* @param string[optional] $error The error message to set.
*/
public function isSmallerThan($maximum, $error = null)
{
// filled
if ($this->isFilled()) {
// post/get data
$data = $this->getMethod(true);
// validate
if (!isset($data[$this->attributes['name']]) || !SpoonFilter::isSmallerThan($maximum, $data[$this->attributes['name']])) {
if ($error !== null) {
$this->setError($error);
}
return false;
}
return true;
}
// not submitted
if ($error !== null) {
$this->setError($error);
}
return false;
}