Home Backend Development PHP Tutorial Detailed explanation of PHP return data formatting class

Detailed explanation of PHP return data formatting class

Jun 11, 2018 pm 01:48 PM
format php

DataReturn.class.php

<?php
/** 返回數據格式化類
*	Date:	2011-08-15
*	Author:	fdipzone
*/
class DataReturn{	// class start
	private $type;
	private $xmlroot;
	private $callback;
	private $returnData;

	public function __construct($param=array()){
		$this->type = $this->exists($param,&#39;type&#39;)? strtoupper($param[&#39;type&#39;]) : &#39;JSON&#39;;		// 類型 JSON,XML,CALLBACK,ARRAY
		$this->xmlroot = $this->exists($param,&#39;xmlroot&#39;)? $param[&#39;xmlroot&#39;] : &#39;xmlroot&#39;;		// xml root dom name
		$this->callback = $this->exists($param,&#39;callback&#39;)? $param[&#39;callback&#39;] : &#39;&#39;;			// JS callback function name
		$format = array();
		$format[&#39;retcode&#39;] = $this->exists($param,&#39;format.retcode&#39;)? $param[&#39;format&#39;][&#39;retcode&#39;] : &#39;retcode&#39;;//retcode 對應名稱
		$format[&#39;msg&#39;] = $this->exists($param,&#39;format.msg&#39;)? $param[&#39;format&#39;][&#39;msg&#39;] : &#39;msg&#39;;                //msg 對應名稱
		$format[&#39;data&#39;] = $this->exists($param,&#39;format.data&#39;)? $param[&#39;format&#39;][&#39;data&#39;] : &#39;data&#39;;            //data 對應名稱
		$result = array();
		$result[$format[&#39;retcode&#39;]] = $this->exists($param,&#39;retcode&#39;)? $param[&#39;retcode&#39;] : 0;
		$result[$format[&#39;msg&#39;]] = $this->exists($param,&#39;msg&#39;)? $param[&#39;msg&#39;] : &#39;&#39;;
		$result[$format[&#39;data&#39;]] = $this->exists($param,&#39;data&#39;)? $param[&#39;data&#39;] : &#39;&#39;;
		$this->returnData = $result;
	}
	//輸出數據
	public function data_return(){
		ob_clean();
		switch($this->type){
			case &#39;JSON&#39;:
				$this->json_return();
				break;
			case &#39;XML&#39;:
				$this->xml_return();
				break;
			case &#39;CALLBACK&#39;:
				$this->callback_return();
				break;
			case &#39;ARRAY&#39;:
				$this->array_return();
				break;
			default:
				$this->json_return();
		}
		exit();
	}
	//輸出JSON格式數據,如有callback參數則返回JSONP格式
	private function json_return(){
		header(&#39;content-type:text/html;charset=utf-8&#39;);
		if(empty($this->callback)){
			echo json_encode($this->returnData);
		}else{
			echo $this->callback.&#39;(&#39;.json_encode($this->returnData).&#39;);&#39;;
		}
	}
	//輸出XML格式數據
	private function xml_return(){
		header(&#39;content-type:text/xml;charset=utf-8&#39;);
		echo $this->xml_encode($this->returnData,$this->xmlroot);
	}
	//輸出JSON格式數據,并調用callback方法
	private function callback_return(){
		header(&#39;content-type:text/html;charset=utf-8&#39;);
		$this->callback = empty($this->callback)? &#39;callback&#39; : $this->callback;
		echo "<script type=\"text/javascript\">\r\n";
		echo $this->callback."(".json_encode($this->returnData).");\r\n";
		echo "</script>";
	}
	//輸出數組格式數據
	private function array_return(){
		header(&#39;content-type:text/html;charset=utf-8&#39;);
		echo &#39;<pre class="brush:php;toolbar:false">&#39;;
		print_r($this->returnData);
		echo &#39;
'; } //XML編碼 private function xml_encode($data, $root='xmlroot', $encoding='utf-8') { $xml = "\n"; $xml.= "<" . $root . ">\n"; $xml.= $this->data_to_xml($data); $xml.= ""; return $xml; } //數組轉XML格式 private function data_to_xml($data) { if (is_object($data)) { $data = get_object_vars($data); } $xml = ''; foreach ($data as $key => $val) { is_numeric($key) && $key = "item id=\"$key\""; $xml.="<$key>"; $xml.= ( is_array($val) || is_object($val)) ? $this->data_to_xml($val) : $this->cdata($val); list($key, ) = explode(' ', $key); $xml.="\n"; } return $xml; } //判斷數據是否存在 private function exists($obj,$key=''){ if($key==''){ return isset($obj) && !empty($obj); }else{ $keys = explode('.',$key); for($i=0,$max=count($keys); $i<$max; $i++){ if(isset($obj[$keys[$i]])){ $obj = $obj[$keys[$i]]; }else{ return false; } } return isset($obj) && !empty($obj); } } //判斷是否需要加上標記 private function cdata($val){ if(!empty($val) && !preg_match('/^[A-Za-z0-9+$]/',$val)){ $val = ''; } return $val; } } // class end ?>
Copy after login

demo

<?
    require_once(&#39;DataReturn.class.php&#39;);
    $param = array( // DataReturn 參數
                    &#39;type&#39;    => &#39;JSON&#39;, // 輸出的類型 JSON,XML,CALLBACK,ARRAY 默認為 JSON
                    &#39;retcode&#39; => &#39;1000&#39;, // retcode 的值,默認為0
                    &#39;msg&#39;     => &#39;&#39;,     // msg 的值,默認為空
                    &#39;data&#39;    => array(  // 要輸出的數據
                                    &#39;id&#39;     => &#39;100&#39;,
                                    &#39;name&#39;   => &#39;fdipzone&#39;,
                                    &#39;gender&#39; => 1,
                                    &#39;age&#39;    => 28
                                 ),
                    &#39;format&#39;  => array(// 輸出的數據key格式,默認為 retcode,msg,data
                                    &#39;retcode&#39; => &#39;status&#39;,
                                    &#39;msg&#39;     => &#39;info&#39;,
                                    &#39;data&#39;    => &#39;result&#39;
                                 ),
                    &#39;xmlroot&#39;  => &#39;xmlroot&#39;,  // 當type=XML時,XML根節點名稱,默認為xmlroot
                    &#39;callback&#39; => &#39;callback&#39;  /* 回調方法名稱
                                                   type=JSON時,默認為空,如不為空,則輸出callback({data});
                                                   type=CALLBACK時,默認為callback,自動調用頁面JS回調方法
                                              */
    );
    $obj = new DataReturn($param);  // 創建DataReturn類對象
    $obj->data_return();            // 按格式輸出數據
?>
Copy after login

This article explains PHP returns the data formatting class. For more related content, please pay attention to the PHP Chinese website.

Related recommendations:

Explanation about php XML file interpretation class

Explanation about php CSS Update Class

Explanation on php __call and __callStatic

The above is the detailed content of Detailed explanation of PHP return data formatting class. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles