nonz250 / php-simple-ogp
这是一个用于读取 OGP 的简单库。
1.1.0
2022-01-25 08:23 UTC
Requires
- php: ^7.4|^8.0
Requires (Dev)
- ext-dom: *
- ext-mbstring: *
- phpunit/phpunit: ^9.5
README
简单的OGP制作器
贡献
请随意提交Pull Request。然而,请在提交之前运行make prod命令并检查测试内容。
开发
我们推荐使用Docker进行此项目。
构建命令
初始设置
make setup
开发测试
正在开发中的测试。
make test
代码修复器
make fix
生产测试
在提交Pull Request之前进行测试。
make prod
如何使用
例如。
$ogp = new \SimpleOgp\SimpleOgp('https://labo.nozomi.bike'); // Get web site content and set ogp values. $ogp->getHtml(); // Get ogp title. $title = $ogp->title(); // Get ogp description. $description = $ogp->description(); // Get ogp image path. $imagePath = $ogp->imagePath();