PHP code example of razonyang / mediawiki-zhconverter
1. Go to this page and download the library: Download razonyang/mediawiki-zhconverter library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
razonyang / mediawiki-zhconverter example snippets
define('MEDIAWIKI_PATH', '/path-to-mediawiki');
$text = '书本';
// 中文简体
echo ZhConverter::toCN($text); // 书本
// 台湾繁体
echo ZhConverter::toTW($text); // 書本
// 香港繁体
echo ZhConverter::toHK($text); // 書本
// 澳门繁体
echo ZhConverter::toMO($text); // 書本
// 其他变种
$variant = 'zh-sg'; // 新加坡
echo ZhConverter::to($variant, $text); // 书本