decodelabs/chirp

推文解析器

v0.9.1 2024-08-22 01:26 UTC

This package is auto-updated.

Last update: 2024-09-04 20:51:59 UTC


README

PHP from Packagist Latest Version Total Downloads GitHub Workflow Status PHPStan License

PHP 的 Twitter 工具

Chirp 目前提供了一个手动编写的推文解析器,允许您轻松地将导入的推文渲染到您的网站上。

DecodeLabs 博客 上获取新闻和更新。

安装

通过 composer 安装库

composer require decodelabs/chirp

用法

解析推文为 HTML

use DecodeLabs\Chirp\Parser;

$parser = new Parser();
echo $parser->parse($myTweet);

Metamorph

Chirp 还提供了一个 Metamorph 处理器,以便可以通过简化的界面使用它。

use DecodeLabs\Metamorph;

echo Metamorph::tweet($myTweet);

输出

Chirp 提供的解析 HTML 现在由 Tagged 库的 Markup 接口包装,确保在所有渲染环境中正确处理输出。

许可

Chirp 在 MIT 许可下授权。有关完整许可文本,请参阅 LICENSE