分类: 后端

92 篇文章

PHP取整的三个方法
floor()  (舍去小数部分,只取整数) ceil()  (进一取整,只要有小数部分,直接加一) round()  (四舍五入取整)
PHP curl后json_decode无法将json转换成数组
curl返回的数据中带有bom格式,需要转换; 有些返回数据直接: print_r(json_decode($data,true)); 就可以转换。   $url = "http://localhost/web_services.php"; $post_data = array ("username" => "bob","key" …
PHP 发送POST请求
/** * 发送post请求 * @param string $url 请求地址 * @param array $post_data post键值对数据 * @return string */ function send_post($url, $post_data) { $postdata = http_build_query($post_data…
Mysql添加外键
为已经添加好的数据表添加外键: 语法:alter table 表名 add constraint FK_ID foreign key(你的外键字段名) REFERENCES 外表表名(对应的表的主键字段名); 例: alter table tb_active add constraint FK_ID foreign key(user_id) REF…
判断手机号的方法
/** * 验证手机号是否正确 */ function is_mobile($mobile) { if (!is_numeric($mobile)) { return false; } return preg_match('#^13[\d]{9}$|^14[5,7]{1}\d{8}$|^15[^4]{1}\d{8}$|^17[0,1,3,6,7,8…
在一个字符串中查询另一个字符串
echo strstr('明日编程词典','编'); //输出查询的字符串 echo '<br>'; //执行回车 echo strstr('www.111c.net','111'); //输出查询的字符串(从第一个m取值) echo '<br>'; //执行回车 echo strstr('0431-84972266','8…