1
0
mirror of synced 2025-02-08 00:09:26 +03:00
doctrine2/classes/Validator/Ip.class.php

22 lines
541 B
PHP
Raw Normal View History

2006-04-13 20:37:28 +00:00
<?php
class Doctrine_Validator_IP {
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value) {
$e = explode(".",$request);
if(count($e) != 4) return false;
foreach($e as $k=>$v):
if(! is_numeric($v)) return false;
$v = (int) $v;
if($v < 0 || $v > 255) return false;
endforeach;
return true;
}
}
?>