在Laravel中使用Laravel-Phone包实现电话号码格式化、验证和模型铸造功能
Laravel  /  管理员 发布于 8个月前   361
Laravel-Phone软件包让在 PHP 和 Laravel 中处理电话号码变得轻而易举,
它提供了验证规则、属性铸造、实用帮助等功能。
你是否曾经围绕电话号码建立过支持多个国家的验证?
本软件包内置了有用的验证规则,可以轻松验证任何国家的电话号码。
您可以指定可接受的国家代码格式,同时接受有效的 "国际 "号码:
// Validate either USA or Belguim
Validator::make($request->all(), [
'phone_number' => 'phone:US,BE',
]);
// Validate US specifically, but also accept other countries
Validator::make($request->all(), [
'phone_number' => 'phone:US,INTERNATIONAL',
]);
// Use the Phone rule
Validator::make($request->all(), [
'phone_number' => (new Phone)->country(['US', 'BE']),
]);
// Match country code against another data field
Validator::make($request->all(), [
'phone_number' => (new Phone)->countryField('custom_country_field'),
'custom_country_field' => 'required_with:phone_number',
]);
该软件包在引擎盖下使用了 Google 电话号码处理库的 PHP 移植版本,
https://github.com/giggsey/libphonenumber-for-php
它具有强大的解析、格式化和验证功能,可在 PHP 中处理电话号码:
// Formatting examples
$phone = new PhoneNumber('012/34.56.78', 'BE');
$phone->format($format); // Custom formatting
$phone->formatE164(); // +3212345678
$phone->formatInternational(); // +32 12 34 56 78
$phone->formatRFC3966(); // +32-12-34-56-78
$phone->formatNational(); // 012 34 56 78
你可以在 GitHub 上了解有关此软件包的更多信息,获得完整的安装说明,并查看源代码。
https://github.com/Propaganistas/Laravel-Phone
我建议从 readme 开始,获取有关此软件包的完整文档。
https://github.com/Propaganistas/Laravel-Phone/blob/master/README.md
123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..路人 在
php中使用hyperf框架调用讯飞星火大模型实现国内版chatgpt功能示例中评论 教程很详细,如果加个前端chatgpt对话页面就完美了..Copyright·© 2019 侯体宗版权所有· 粤ICP备20027696号