1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/Doctrine/Validator/Ip.php

23 lines
576 B
PHP
Raw Normal View History

2006-05-30 12:56:40 +04:00
<?php
class Doctrine_Validator_Ip {
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
$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;
}
}
?>