本文整理汇总了PHP中WP_CLI::parse_args方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_CLI::parse_args方法的具体用法?PHP WP_CLI::parse_args怎么用?PHP WP_CLI::parse_args使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WP_CLI
的用法示例。
在下文中一共展示了WP_CLI::parse_args方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
}
define('WP_CLI_VERSION', '0.5.0-dev');
// Define the wp-cli location
define('WP_CLI_ROOT', __DIR__ . '/');
// Set a constant that can be used to check if we are running wp-cli or not
define('WP_CLI', true);
// Include the wp-cli classes
include WP_CLI_ROOT . 'class-wp-cli.php';
include WP_CLI_ROOT . 'class-wp-cli-command.php';
include WP_CLI_ROOT . 'class-wp-cli-command-with-upgrade.php';
// Include the command line tools
include WP_CLI_ROOT . '../php-cli-tools/lib/cli/cli.php';
// Register the cli tools autoload
\cli\register_autoload();
// Get the cli arguments
list($arguments, $assoc_args) = WP_CLI::parse_args(array_slice($GLOBALS['argv'], 1));
// Check --silent flag
define('WP_CLI_SILENT', isset($assoc_args['silent']));
// Handle --version parameter
if (isset($assoc_args['version'])) {
WP_CLI::line('wp-cli ' . WP_CLI_VERSION);
exit;
}
// Define the WordPress location
if (is_readable($_SERVER['PWD'] . '/../wp-load.php')) {
define('WP_ROOT', $_SERVER['PWD'] . '/../');
} elseif (!empty($assoc_args['path'])) {
// trailingslashit() isn't available yet
define('WP_ROOT', rtrim($assoc_args['path'], '/') . '/');
} else {
define('WP_ROOT', $_SERVER['PWD'] . '/');