nhymxu/php-floc-disable
Composer 安装命令:
composer require nhymxu/php-floc-disable
包简介
PHP middleware to disable Google's Federated Learning of Cohorts (FLoC) tracking
README 文档
README
PHP middleware to disable Google's Federated Learning of Cohorts (FLoC) tracking
Usage
This package is installable and auto-loadable via Composer as nhymxu/php-floc-disable.
composer require nhymxu/php-floc-disable
Slim 4 integration
Add the FlocDisableMiddleware to set the header
Example: public/index.php
<?php use Psr\Http\Message\ResponseInterface as Response; use Psr\Http\Message\ServerRequestInterface as Request; use Nhymxu\FlocDisable\FlocDisableMiddleware; use Slim\Factory\AppFactory; require_once __DIR__ . '/../vendor/autoload.php'; $app = AppFactory::create(); // Add Slim routing middleware $app->addRoutingMiddleware(); // Set the header to disable FLoC. $app->add(new FlocDisableMiddleware()); $app->addErrorMiddleware(true, true, true); // Define app routes $app->get('/', function (Request $request, Response $response) { $response->getBody()->write('Hello, World!'); return $response; })->setName('root'); // Run app $app->run();
Support
- Issues: https://github.com/nhymxu/php-floc-disable/issues
- Here you can donate for this project.
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 102
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-05-11