simplestats-io/php-client
Composer 安装命令:
composer require simplestats-io/php-client
包简介
Plain PHP client for SimpleStats analytics. Track visitors, registrations, and payments. Discover which channels actually drive revenue, not just traffic. Server-side, GDPR compliant.
关键字:
README 文档
README
This is the official plain PHP client to send tracking data to https://simplestats.io. It works with any PHP 8.2+ application, no framework required.
For Laravel applications, use the dedicated Laravel Client instead, which provides automatic middleware, observers, and queue integration.
Introduction
SimpleStats is analytics that goes beyond simple page views. Track visitors, registrations, and payments. Discover which channels actually drive revenue, not just traffic. With server-side tracking and filtering via UTM codes, you get detailed analysis of marketing efforts and clearly see which channels drive revenue. Effortlessly evaluate ROI, identify cost-effective user acquisition channels, and pinpoint the most effective performance channels. SimpleStats is fully GDPR compliant and unaffected by ad blockers since all tracking occurs server-side.
Installation
composer require simplestats-io/php-client
Quick Start
use SimpleStatsIo\PhpClient\SimplestatsClient; use SimpleStatsIo\PhpClient\TrackingData; use SimpleStatsIo\PhpClient\VisitorHashGenerator; $client = new SimplestatsClient([ 'api_token' => 'your-api-token', ]); // Generate a GDPR-compliant visitor hash $visitorHash = VisitorHashGenerator::generate( ip: $_SERVER['REMOTE_ADDR'], userAgent: $_SERVER['HTTP_USER_AGENT'], secretKey: 'your-secret-key' ); // Auto-extract tracking data from the current request $trackingData = TrackingData::fromGlobals(appUrl: 'https://yourapp.com'); // Track the visitor $client->trackVisitor($visitorHash, $trackingData);
Configuration
Pass a configuration array when creating the client:
$client = new SimplestatsClient([ 'api_token' => 'your-api-token', // Required 'api_url' => 'https://simplestats.io/api/v1/', // Optional (default: SaaS URL) 'timeout' => 5, // Optional, seconds (default: 5) 'max_retries' => 3, // Optional (default: 3) 'enabled' => true, // Optional (default: true) ]);
| Option | Type | Default | Description |
|---|---|---|---|
api_token |
string | (required) | Your project API token from SimpleStats |
api_url |
string | https://simplestats.io/api/v1/ |
API base URL (change for self-hosted) |
timeout |
int | 5 |
HTTP request timeout in seconds |
max_retries |
int | 3 |
Number of retries on transient failures |
enabled |
bool | true |
Set to false to disable all tracking |
When tracking is disabled, all methods return an empty array without making any HTTP requests.
Usage
Tracking Visitors
Track anonymous visitors with optional UTM parameters and metadata:
$client->trackVisitor( visitorHash: $visitorHash, trackingData: $trackingData, time: new DateTimeImmutable() // optional, defaults to now );
Tracking User Registrations
$client->trackUser( id: $user->id, registeredAt: new DateTimeImmutable($user->created_at), trackingData: $trackingData, // optional addLogin: true // optional, also track a login event );
Tracking Logins
$client->trackLogin( userId: $user->id, userRegisteredAt: new DateTimeImmutable($user->created_at), ip: $_SERVER['REMOTE_ADDR'], // optional userAgent: $_SERVER['HTTP_USER_AGENT'], // optional time: new DateTimeImmutable() // optional, defaults to now );
Tracking Payments
Amounts must be in cents (e.g., 2000 = $20.00). Currency must be ISO 4217 (EUR, USD, GBP, etc.).
Associate a payment with either a user or a visitor:
// Payment linked to a registered user $client->trackPayment( id: $payment->id, gross: 2000, net: 1680, currency: 'EUR', time: new DateTimeImmutable($payment->created_at), userId: $user->id, userRegisteredAt: new DateTimeImmutable($user->created_at) ); // Payment linked to an anonymous visitor (e.g., guest checkout) $client->trackPayment( id: $payment->id, gross: 2000, net: 1680, currency: 'EUR', time: new DateTimeImmutable($payment->created_at), visitorHash: $visitorHash );
Tracking Custom Events
$client->trackCustomEvent( id: 'evt_123', name: 'subscription_upgraded', time: new DateTimeImmutable(), // optional, defaults to now userId: $user->id, // optional userRegisteredAt: new DateTimeImmutable($user->created_at) // optional );
Tracking Data
The TrackingData class holds visitor metadata (IP, user agent, UTM parameters, referer, page entry).
Auto-extract from the current request
$trackingData = TrackingData::fromGlobals(appUrl: 'https://yourapp.com');
This automatically extracts:
- IP address from proxy-aware headers (Cloudflare, Akamai, X-Forwarded-For, X-Real-IP, REMOTE_ADDR)
- User agent from the request
- UTM parameters from query string (
utm_source,utm_medium,utm_campaign,utm_term,utm_content,ref,adGroup,adGroupId) - Referer domain from the HTTP referer header
- Page entry path (URI without query string)
Build manually
$trackingData = new TrackingData( ip: '203.0.113.50', userAgent: 'Mozilla/5.0 ...', referer: 'google.com', source: 'google', medium: 'cpc', campaign: 'spring_sale', term: 'analytics tool', content: 'banner_ad', pageEntry: '/pricing', );
Visitor Hash Generator
Generate GDPR-compliant anonymized visitor identifiers. The hash rotates daily to prevent long-term tracking.
use SimpleStatsIo\PhpClient\VisitorHashGenerator; $hash = VisitorHashGenerator::generate( ip: $_SERVER['REMOTE_ADDR'], userAgent: $_SERVER['HTTP_USER_AGENT'], secretKey: 'your-secret-key', date: '2024-06-15' // optional, defaults to today );
The generator creates a SHA-256 hash from IP + User-Agent + date + secret key, truncated to 32 characters. The daily date rotation ensures hashes are not persistent across days, keeping visitor tracking fully anonymous.
Error Handling
The client throws specific exceptions you can catch:
use SimpleStatsIo\PhpClient\Exceptions\ConfigurationException; use SimpleStatsIo\PhpClient\Exceptions\ApiRequestFailed; try { $client->trackVisitor($visitorHash, $trackingData); } catch (ConfigurationException $e) { // Invalid configuration (e.g., missing api_token) } catch (ApiRequestFailed $e) { // API request failed after retries $e->getMessage(); // Error description $e->statusCode; // HTTP status code $e->responseBody; // Raw response body }
The HTTP client automatically retries on transient failures (connection errors, 429, 5xx) with exponential backoff.
Performance: Non-Blocking Tracking
By default, all tracking calls are synchronous and block the current request. In production, you should avoid adding latency to your user-facing responses. Here are a few strategies:
fastcgi_finish_request()(recommended for PHP-FPM): Send the response to the client first, then run tracking calls afterwards. Zero dependencies, works out of the box with PHP-FPM.- File/SQLite queue with cron: Write tracking data to a local file or SQLite database, then process it in the background with a cron job. Most reliable approach, but requires a worker setup.
- Guzzle async requests: Use Guzzle's
requestAsync()combined withfastcgi_finish_request()to run multiple tracking calls in parallel after the response is sent.
// Example: fastcgi_finish_request() echo $responseBody; fastcgi_finish_request(); // Response is delivered to the client $client->trackVisitor($visitorHash, $trackingData); // Runs in the background
Testing
composer test
Documentation
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.
simplestats-io/php-client 适用场景与选型建议
simplestats-io/php-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 1, 最近一次更新时间为 2026 年 03 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「analytics」 「tracking」 「gdpr」 「simplestats-io」 「revenue-attribution」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 simplestats-io/php-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 simplestats-io/php-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 simplestats-io/php-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP SDK for the Parcel Monkey UK API
Analytics chooser extensions for site settings.
A Laravel Nova Card to show Fathom Analytics stats.
Audit changes of your Eloquent models in Laravel/Lumen
Alfabank REST API integration
Contao 4 Hintergrund-Tracking mit Matomo
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 35
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-10