Skip to content

Latest commit

 

History

History
executable file
·
14 lines (12 loc) · 355 Bytes

README.md

File metadata and controls

executable file
·
14 lines (12 loc) · 355 Bytes

数据格式转换

json,xml,array 数据之间的转换

创建新的请求实例

use ClearSwitch\DataConversion\DataConversion;

/**
 * $data需要的转换的数据(暂时只支持json,xml,array)
 *$type 需要转换的格式(暂时只支持json,xml,array)
 */
$obj=new DataConversion();
$obj->dataConversion($data,$type);