_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()的處理程式。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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;
}
}
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; } }
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
檢視更多 >