WP_CLI
DocParser::get_arg_or_param_args()
Get the args for an arg or param
Метод класса: DocParser{}
Хуков нет.
Возвращает
Массив|null
. Interpreted YAML document, or null.
Использование
// private - только в коде основоного (родительского) класса $result = $this->get_arg_or_param_args( $regex );
- $regex(строка) (обязательный)
- Pattern to match against
Код DocParser::get_arg_or_param_args() DocParser::get arg or param args WP-CLI 2.8.0-alpha
private function get_arg_or_param_args( $regex ) { $bits = explode( "\n", $this->doc_comment ); $within_arg = false; $within_doc = false; $document = []; foreach ( $bits as $bit ) { if ( preg_match( $regex, $bit ) ) { $within_arg = true; } if ( $within_arg && $within_doc && '---' === $bit ) { $within_doc = false; } if ( $within_arg && ! $within_doc && '---' === $bit ) { $within_doc = true; } if ( $within_doc ) { $document[] = $bit; } if ( $within_arg && '' === $bit ) { $within_arg = false; break; } } if ( $document ) { return Spyc::YAMLLoadString( implode( "\n", $document ) ); } return null; }