会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
主心骨
博客园
首页
新随笔
联系
订阅
管理
2021年8月18日
php 二维数组前追加一组数据
摘要: $list = Db::name('*****')->where([])->select(); $arr[0] = ['name'=>'推荐']; array_walk($arr,function($item) use (&$list) { array_unshift($list, $item);
阅读全文
posted @ 2021-08-18 08:47 主心骨
阅读(793)
评论(0)
推荐(0)
2021年6月16日
时间戳 转换成 年、 天 、时、 分、 秒
摘要: public function Sec2Time($time) { if (is_numeric($time)) { $value = array( "years" => 0, "days" => 0, "hours" => 0, "minutes" => 0, "seconds" => 0, );
阅读全文
posted @ 2021-06-16 15:52 主心骨
阅读(348)
评论(0)
推荐(0)
公告