摘要: namespace Home\Controller; use Think\Controller; use Org\Net\Http; class IndexController extends Controller { public function download(){ //获取文件的唯一id( 阅读全文
posted @ 2017-02-13 22:54 不想下天桥 阅读(1510) 评论(0) 推荐(0) 编辑
摘要: 把复杂的数据类型压缩到一个字符串中 serialize() 把变量和它们的值编码成文本形式 unserialize() 恢复原先变量 eg: $stooges = array('Moe','Larry','Curly');$new = serialize($stooges);print_r($new 阅读全文
posted @ 2017-02-12 10:54 不想下天桥 阅读(2809) 评论(2) 推荐(0) 编辑