PHP code example of dreamsdrive / zh-conv

1. Go to this page and download the library: Download dreamsdrive/zh-conv 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/ */

    

dreamsdrive / zh-conv example snippets



    use DreamsDrive\ZhConv;

    echo '<pre>';
    echo ZhConv::get('HK','CN','「你們國家也有黑人嗎?」 布殊 ——2002年,巴西總統訪問美國。');
    echo ZhConv::get('TW','CN','「你們國家也有黑人嗎?」 布希 ——2002年,巴西總統訪問美國。');
    echo ZhConv::get('CN','HK','“你们国家也有黑人吗?” 布什 ——2002年,巴西总统访问美国。');
    echo ZhConv::get('CN','TW','“你们国家也有黑人吗?” 布什 ——2002年,巴西总统访问美国。');
    echo '</pre>';