ahmedofali/php-email-validator
最新稳定版本:0.1.1
Composer 安装命令:
composer require ahmedofali/php-email-validator
包简介
PHP Library to Verify if email address exists on the mail server
README 文档
README
Is a php library for validating Emails and make sure the email is valid This library Inspired from hbattat/verifyEmail.
Installation:
composer require ahmedofali/php-email-validator
How to Use it:
require "vendor/autoload.php"; use PHPVerifyEmail\PHPVerifyEmail; $email = 'dev.ahmed.abbass@gmail.com'; $verify_email = 'mohamedattya@gmail.com'; $port = 25; $verification = PHPVerifyEmail::verify( $email, $verify_email, $port ); --------------------- // print log --------------------- print_r( $verification->getLog() ); --------------------- // print Result --------------------- print_r( $verification->getResult() );
Test Cases:
From Terminal write:
composer test
统计信息
- 总下载量: 52
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-10-14