Blogger Information
Blog 14
fans 0
comment 0
visits 11541
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
【php】json、时间戳
暮光薄凉
Original
647 people have browsed it
1.json数据类型

1.数字(浮点数、整数)
2.字符串,必须放在””里
3.布尔值,true和false
4.数组,放在[]中
5.对象,放在{}中

2.json数据转换

//转换为对象
json_decode(变量);
//转换为数组
json_decode(变量,true);

//数组转换为json格式
json_encode(变量);

//设置字符集
header(‘Content-Type:application/json’);

3.引入文件
函数 作用
require ‘’; 引入文件,没有返回值
require_one ‘’; 只引入一次
include ‘’; 引入文件,有返回值
include_one ‘’; 只引入一次
@require ‘’; 前面加@,可以屏蔽错误
getdate() 获取当前日期和时间的详细信息
time() 获取时间戳
data(‘Y-m-d H:i:s’,time()) 格式化日期
strtotime(‘’) 把时间格式转化为时间戳
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post