PHP code example of houdunwang / cli

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

    

houdunwang / cli example snippets



\houdunwang\config\Config::loadFiles('config');
\houdunwang\cli\Cli::bootstrap();

\houdunwang\cli\Cli::setBinds(
    ['app/Cli.php']
);

\houdunwang\cli\Cli::setBinds( 'hd', function ( $cli, $arg1, $arg2 ) {
	echo $arg1, $arg2;
	//正确提示信息
	$cli->success( '操作成功' );
	
	//错误提示信息
    $cli->error( '执行失败' );
});