php send_json.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php send_json.php相关的知识,希望对你有一定的参考价值。

<?php
function send_json_response( $success, $data = array() ){
	$response = array(
		'success' => $success,
		'data'    => $data,
	);

	return wp_send_json( $response );
}
function send_json_error( $data = array() ){
	if( is_string( $data ) ){
		$message = $data;
		
		$data = array();
		$data['message'] = $message;
	}

	return send_json_response( false, $data );
}
function send_json_success( $data = array() ){
	return send_json_response( true, $data );
}

以上是关于php send_json.php的主要内容,如果未能解决你的问题,请参考以下文章