Cake\Localized\Validation\NoValidation::postal PHP Method

postal() public static method

Checks a postal code for Norway.
public static postal ( string $check ) : boolean
$check string The value to check.
return boolean Success.
    public static function postal($check)
    {
        $pattern = '/^\\d{4}$/';
        return (bool) preg_match($pattern, $check);
    }

Usage Example

Beispiel #1
0
 /**
  * test the postal method of NoValidation
  *
  * @return void
  */
 public function testPostal()
 {
     $this->assertTrue(NoValidation::postal('0123'));
     $this->assertFalse(NoValidation::postal('90210'));
 }