wtiservice/wti-service 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

wtiservice/wti-service

最新稳定版本:v2.0.1

Composer 安装命令:

composer require wtiservice/wti-service

包简介

Check Overall Website Performance

README 文档

README

The WpiService class is a PHP library that allows you to check the performance of a website using the Google PageSpeed Insights API. This library provides a convenient way to analyze a website's performance metrics and retrieve specific performance data.

Installation

To use this library in your PHP project, follow these steps:

  1. Install Guzzle HTTP client, if you haven't already, using Composer:

    composer require guzzlehttp/guzzle
  2. Install WpiService Package in your project.

    composer require wpiservice/wpi-service
  3. Create an instance of the WpiService class in your code.

use wpiservice\WpiService\WpiService;

$wpiService = new WpiService();

Usage

Performance Analysis

You can use the Performance method to analyze the performance of a website. This method takes two parameters: the URL of the website to be analyzed and your Google PageSpeed API key for authentication and access to the API.

$url = 'https://example.com';
$apiKey = 'your-api-key';

$result = $wpiService->Performance($url, $apiKey);

if (isset($result['error'])) {
    // Handle the error.
} else {
    // Use the performance data.
}

Fetching Specific Performance Metrics

You can also fetch specific performance metrics from the Google PageSpeed Insights data using the PerformanceMetric method. This method takes two parameters: the performance data obtained from the API and the name of the specific performance metric to be retrieved.

$performanceData = $wpiService->Performance($url, $apiKey);
$metricName = 'first-contentful-paint';

$metricData = $wpiService->PerformanceMetric($performanceData, $metricName);

if (isset($metricData['error'])) {
    // Handle the error.
} else {
    // Use the specific performance metric data.
}

Valid values for $metricName include:

  • 'first-contentful-paint'
  • 'largest-contentful-paint'
  • 'total-blocking-time'
  • 'cumulative-layout-shift'

Error Handling

Both Performance and PerformanceMetric methods return an associative array containing performance data or an error message if the request or metric retrieval fails. You should check for the presence of the 'error' key in the returned data to handle errors gracefully.

License

This library is licensed under the MIT License.

Contribution

Contributions are welcome! If you'd like to contribute to this project, please open an issue or submit a pull request.

Feel free to customize this README to include your name, contact information, and any additional details specific to your project. Providing clear and comprehensive documentation will make it easier for others to use your PHP class.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-09-07