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

postal() public static method

Checks a postal code for Switzerland & Liechtenstein
public static postal ( string $check ) : boolean
$check string The value to check.
return boolean Success.
    public static function postal($check)
    {
        $pattern = '/^[1-9][0-9]{3}$/';
        return (bool) preg_match($pattern, $check);
    }

Usage Example

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