get_cli_args

函数


get_cli_args ( $param, $required = false )
参数
  • (string)
    $param
    Required:
  • (bool)
    $required
    Required:
    Default: false
返回值
  • (mixed)
定义位置
  • wp-admin/includes/class-wp-importer.php
    , line 276
引入
弃用

Returns value of command line params.

Exits when a required param is not set.

function get_cli_args( $param, $required = false ) {
	$args = $_SERVER['argv'];
	if ( ! is_array( $args ) ) {
		$args = array();
	}

	$out = array();

	$last_arg = null;
	$return   = null;

	$il = count( $args );

	for ( $i = 1, $il; $i