php wikitext parser
v1.0.2
該函式庫提供了一種用 PHP 解析 Wikitext 的簡單方法。
只需在專案的根目錄中執行以下 Composer 命令。
composer require divineomega/php-wikitext-parser
最基本的用法是將 Wikitext 格式的字串轉換為純文字。
$ plainText = ( new WikitextParser ())
-> setWikitext ( $ wikitext )
-> parse ();
您也可以使用setFormat
方法指定要轉換為的替代格式。預設情況下,它設定為純文字。
例如,您可以將 Wikitext 轉換為 HTML,如下所示。
$ plainText = ( new WikitextParser ())
-> setWikitext ( $ wikitext )
-> setFormat (Format:: HTML )
-> parse ();
預設情況下,使用檔案快取。如果您願意,您可以指定任何符合 PSR-6 的快取庫。這是使用setCache
方法完成的,如下所示。
$ cache = new OtherPsr6CacheItemPool ();
$ plainText = ( new WikitextParser ())
-> setCache ( $ cache )
-> setWikitext ( $ wikitext )
-> parse ();