摘要: git 官网 https://git-scm.com/docs/giteveryday 关联远程分支 git push origin 分支名称 git branch --set-upstream-to=origin/remote_branch your_branch origin/remote_br 阅读全文
posted @ 2022-04-16 23:40 liu_jason 阅读(44) 评论(0) 推荐(0) 编辑
摘要: bool(true) empty(0); empty(''); empty([]); empty(null); bool(false) int(1) empty((object)array()) empty(1) 阅读全文
posted @ 2022-04-16 17:25 liu_jason 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 文档地址 https://www.php.cn/php-weizijiaocheng-452063.html 多用于 自动生成文档 实现 MVC 架构 实现单元测试 配合 DI 容器解决依赖 使用反射类 获取类 命名空间 ReflectionClass $rfc = new \ReflectionC 阅读全文
posted @ 2022-04-16 11:23 liu_jason 阅读(28) 评论(0) 推荐(0) 编辑
摘要: array_walk() 对数组中的每个元素应用用户自定义函数 阅读全文
posted @ 2022-04-16 10:04 liu_jason 阅读(11) 评论(0) 推荐(0) 编辑
摘要: array_map() 该函数将用户自定义函数作用到数组中的每个值上,并返回用户自定义函数作用后的带有新值的数组。 可以传递多个数组,回调函数接受的参数数目应该和传递给 array_map() 函数的数组数目一致。 阅读全文
posted @ 2022-04-16 10:03 liu_jason 阅读(26) 评论(0) 推荐(0) 编辑
摘要: php 中instanceof的使用 作用:(1)判断一个对象是否是某个类的实例,(2)判断一个对象是否实现了某个接口。 第一种用法: <?php$obj = new A();if ($obj instanceof A) { echo 'A';} 第二种用法: <?phpinterface Exam 阅读全文
posted @ 2022-04-16 10:01 liu_jason 阅读(25) 评论(0) 推荐(0) 编辑