_scalar_wp_die_handler

函数
_scalar_wp_die_handler ( $message = '', $title = '', $args = array() )
Access
Private
参数
  • (string) $message Optional. Response to print. Default empty.
    Required:
    Default: (empty)
  • (string) $title Optional. Error title (unused). Default empty.
    Required:
    Default: (empty)
  • (string|array) $args Optional. Arguments to control behavior. Default empty array.
    Required:
    Default: array()
定义位置
相关方法
_ajax_wp_die_handler_xml_wp_die_handler_xmlrpc_wp_die_handler_json_wp_die_handler_default_wp_die_handler
引入
3.4.0
弃用
-

_scalar_wp_die_handler: 这个函数是一个处理程序,当一个标量值被传递到wp_die函数时,它被调用。它将该值转换为一个字符串,并将其传递给默认的wp_die函数。

终止WordPress的执行,并显示一个错误信息。

这是处理APP请求时wp_die()的处理程序。

function _scalar_wp_die_handler( $message = '', $title = '', $args = array() ) {
	list( $message, $title, $parsed_args ) = _wp_die_process_input( $message, $title, $args );

	if ( $parsed_args['exit'] ) {
		if ( is_scalar( $message ) ) {
			die( (string) $message );
		}
		die();
	}

	if ( is_scalar( $message ) ) {
		echo (string) $message;
	}
}

常见问题

FAQs
查看更多 >