1. 首页
  2. 前端

PHP 从axios中获取数据转json保存

header('Content-type:application/json');    // 返回JSON格式

$json_raw = file_get_contents("php://input",true);  //  对从axios中获取的值进行编码  加true 返回 array格式 ,否则会变成 String格式

$json=json_decode($json_raw,true); // 对其进行json编码

 

END

原创文章,作者:Tingwep,如若转载,请注明出处:https://tingwep.cn/web/id=964

发表评论

邮箱地址不会被公开。