PHP的郵箱驗證庫
<?php class HasMxTest extends PHPUnit_Framework_TestCase { /** * Set up for tests in this file. * * @access private */ private function setupTest() { $this->validator = new \EmailValidator\Validator(); } /** * Test hasMx * * @cover \EmailValidator\Validator::hasMx */ public function testHasMx() { $this->setupTest(); // Not an email $this->assertNull( $this->validator->hasMx('example.com') ); // No Records $this->assertFalse( $this->validator->hasMx('example@example.com') ); // Records $this->assertTrue( $this->validator->hasMx('example@google.com') ); $this->assertTrue( $this->validator->hasMx('example@yahoo.com') ); } }
這是一個PHP的郵件驗證庫,需要的朋友可以下載使用
免責聲明
本站所有資源皆由網友貢獻或各大下載網站轉載。請自行檢查軟體的完整性!本站所有資源僅供學習參考。請不要將它們用於商業目的。否則,一切後果都由您負責!如有侵權,請聯絡我們刪除。聯絡方式:admin@php.cn
相關文章
如何驗證從 PHP 發送的 SMTP 郵件?
29 Nov 2024
使用 PHP 郵件進行 SMTP 驗證 從 PHP 發送出站 SMTP 郵件可能需要身份驗證,特別是對於強制要求...的 ISP 帳戶
PHP正規表示式驗證郵件信箱位址的方法
24 Jun 2023
PHP正規表示式驗證信箱位址的方法隨著網路時代的到來,電子郵件成為我們日常生活和工作中必不可少的溝通工具。但是,在使用郵件進行通訊的時候,如何確保輸入的郵箱地址格式正確呢? PHP作為一種廣泛應用的腳本語言,提供了一套正規表示式函數庫,可以對各種文字進行驗證和處理,包括郵箱地址。在本文中,我們將介紹使用PHP正規表示式驗證郵件信箱位址的方法。一、正規表示式驗證
Hot Tools
php-Mailer郵件類
php-Mailer郵件類
PHPMailer_v5.1郵件類
PHPMailer_v5.1郵件類
熱門文章
魯馬島:如何到達山脈
06 Dec 2024
手游攻略
Fortnite:讓我們來狩獵吸血鬼任務包指南
21 Dec 2024
手游攻略
當參數修改受到限制時如何增加MySQL GROUP_CONCAT()最大長度?
19 Dec 2024
mysql教程
軟體驗收測試:確保應用程式準備就緒
19 Dec 2024
js教程
如何在 Go 中存取和解析命令列參數?
18 Dec 2024
Golang