PHP code example of metal / helper

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

    

metal / helper example snippets


#引入包
use metal\helper;
 
 public function index() {

      $cnName = helper\ChineseName::getRandomCnName(2,'-');
      var_dump($cnName); // 费-欣澜

}

...