bool phoneNumber(
string
$number, [bool
$requiredAreaCode = true])
|
|
Validate an irish phone number
This function validates an irish phone number. You can either use the requiredAreaCode or not. by default this is set to true.
<?php
// Include the package
require_once('Validate/IE.php');
$phoneNumber = '+353 1 213 4567';
print 'Valid';
} else {
print 'Not valid!';
}
$phoneNumber = '213 4567';
print 'Valid';
} else {
print 'Not valid!';
}
?>
Parameters: