PHP code example of miserenkov / yii2-phone-validator
1. Go to this page and download the library: Download miserenkov/yii2-phone-validator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
miserenkov / yii2-phone-validator example snippets
public function rules()
{
return [
// ...
['phone', \miserenkov\validators\PhoneValidator::className(), 'country' => 'UA'],
// ...
];
}
public function rules()
{
return [
// ...
['country', 'string'],
['phone', \miserenkov\validators\PhoneValidator::className(), 'countryAttribute' => 'country'],
// ...
];
}
public function rules()
{
return [
// ...
['phone', \miserenkov\validators\PhoneValidator::className(), 'countries' => ['UA', 'RU', 'US', /*...*/]],
// ...
];
}
public function rules()
{
return [
// ...
['phone', \miserenkov\validators\PhoneValidator::className()],
// ...
];
}
php composer.phar
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.