dragonmu / easy-typograph
此包最新版本(dev-master)没有提供许可信息。
免费且易于使用的排版工具
dev-master
2016-06-30 10:18 UTC
Requires (Dev)
- satooshi/php-coveralls: dev-master
This package is not auto-updated.
Last update: 2024-09-14 19:36:42 UTC
README
EasyTypograph - 简单的网站排版工具,附带PHPUnit测试。
使用示例
<?php
//Базовый сценарий использования
$typograph = new Typograph;
$goodText = $typograph->process($badText);
//Использование типографа с любой кодировкой
$typograph = new Typograph;
//https://php.ac.cn/manual/ru/mbstring.supported-encodings.php
$typograph->setConvertFromEncoding($encoding);
$goodText = $typograph->process($badText);
process函数 - 处理文本的示例函数。