hehexu

博客园 首页 新随笔 联系 订阅 管理

2018年1月15日 #

摘要: PHP函数stream_set_timeout(Stream Functions)作用于读取流时 的时间控制。fsockopen函数的timeout只管创建连接时的超时,对于 连接后读取流时的超时,则需要用到 stream_set_timeout函数。由于 国内的网络环境不是很稳定,尤其是连接国外的 阅读全文
posted @ 2018-01-15 23:06 hehexu 阅读(215) 评论(0) 推荐(0) 编辑

摘要: settype — 设置变量的类型 <?php$foo = "5bar"; // string$bar = true; // booleansettype($foo, "integer"); // $foo 现在是 5 (integer)settype($bar, "string"); // $ba 阅读全文
posted @ 2018-01-15 22:32 hehexu 阅读(143) 评论(0) 推荐(0) 编辑

摘要: 在上传文件时,form表单的 阅读全文
posted @ 2018-01-15 18:17 hehexu 阅读(110) 评论(0) 推荐(0) 编辑