上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 34 下一页
摘要: function get_address($address){ preg_match('/(.*?(省|自治区|北京|天津|上海|重庆))/', $address, $matches); if (count($matches) > 1) { $province = $matches[count($m 阅读全文
posted @ 2020-09-13 07:59 没事就更 阅读(1781) 评论(0) 推荐(0) 编辑
摘要: $arr = array( array( 'user_id' => 100, 'goods_id' => 10, 'number' => 1, ), array( 'user_id' => 102, 'goods_id' => 10, 'number' => 1, ), array( 'user_i 阅读全文
posted @ 2020-09-09 16:00 没事就更 阅读(1231) 评论(0) 推荐(1) 编辑
摘要: $query = new Query();$query->select('gs.*, g.goods_images, sa.attr_name, sa.is_default, sa.alias_sort')->from(GoodsSpec::tableName() . ' gs');$query-> 阅读全文
posted @ 2020-09-07 14:20 没事就更 阅读(655) 评论(0) 推荐(0) 编辑
摘要: /** * 记录错误日志 * @param 日志内容 $res */function save_log($res) { $err_date = date("Ymd", time()); $address = '/home/wwwroot/itservice/backend/tools'; if (! 阅读全文
posted @ 2020-09-02 14:51 没事就更 阅读(318) 评论(0) 推荐(0) 编辑
摘要: sudo killall -9 php 阅读全文
posted @ 2020-08-30 18:52 没事就更 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 值是几天过去了自1900年以来,您可以使用内置的功能PhpSpreadsheet将其转换为Unix时间戳量: $value = $worksheet->getCell('A1')->getValue(); $date = \PhpOffice\PhpSpreadsheet\Shared\Date:: 阅读全文
posted @ 2020-08-03 10:35 没事就更 阅读(1024) 评论(0) 推荐(0) 编辑
摘要: 比如我在windows下用git clone gitURL 就提示 SSL certificate problem: self signed certificate 这种问题,在windows下出现得频率高些。我估计主要是git本身就是基于linux开发的,在windows上,容易缺失一些环境。 参 阅读全文
posted @ 2020-08-01 20:36 没事就更 阅读(2281) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-21 15:09 没事就更 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 有新人加入项目时,改动一些方法,此时并不想提交,但是需要拉取最新的代码。有些人会删除本地的项目,重新clone的项目。虽然,这样能够完成更新项目的做法; 接下来介绍更加科学的做法: git fetch --allgit reset --hard origin/mastergit pullgit fe 阅读全文
posted @ 2020-06-22 19:04 没事就更 阅读(4661) 评论(0) 推荐(0) 编辑
摘要: 如何把多维数组中的每个子数组合并成一个新数组 $result,有两个方法: $merged = call_user_func_array('array_merge', $result); 如果是 PHP 版本在 5.6 以上,可以使用 ... 操作符: $merged = array_merge(. 阅读全文
posted @ 2020-06-17 20:36 没事就更 阅读(1175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 34 下一页