承接 usevalid-email/php-sdk 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

usevalid-email/php-sdk

最新稳定版本:1.0

Composer 安装命令:

composer require usevalid-email/php-sdk

包简介

Validate Your Emails with Confidence

README 文档

README

PHP Composer

Latest Version on Packagist Total Downloads License

Validate Your Emails with Confidence

Installation

You can install the package via composer:

composer require usevalid-email/php-sdk

Usage

Initialization

use UseValidEmail\Sdk;

$token = 'your-access-token';
$sdk = new Sdk($token);

Validate Email

try {
    $email = 'example@example.com';
    $response = $sdk->emailValidator->validate($email);
    print_r($response->toArray());
} catch (Exception $e) {
    // Handle exception
}

Using Helper Function

try {
    $email = 'example@example.com';
    $response = validateEmail($email);
    print_r($response->toArray());
} catch (Exception $e) {
    // Handle exception
}

Testing

composer test

Contributing

Please see CONTRIBUTING for details.

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 360
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 7
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-01