```html html, body, div, p, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, input, select, button, textarea, iframe, table, th, td { margin: 0; padding: 0; border-spacing:0px !important; outline:medium; word-break...
> 这篇文章主要介绍了PHP删除数组中空值的方法介绍,需要的朋友可以参考下 说来惭愧,以前在去掉数组的空值是都是强写foreach或者while的,利用这两个语法结构来删除数组中的空元素,简单代码如下: ```php foreach( $arr as $k=>$v){ if( !$v ) unset( $arr[$k] ); } ``` 而且自我感觉还挺不错,只是这样的效率并不高也曾经试过,先将$arr转为对象,然后利用对象的特性来删除,因为:f...
先安装,nvm,即是Node Version Manager(Node版本管理器) ```shell curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bash ``` 或者使用 wget ```shell wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh ...
> 安装的时候遇到下面的问题,有两个报错 > Your requirements could not be resolved to an installable set of packages. > Installation failed, reverting ./composer.json to its original content. > 上面两行报错大致意思为: > 无法将您的需求解析为一组可安装的包。 > 安装失败,正在将./composer.json还原...
> 出现这种情况多半是服务器里面配置问题,由于服务器为了安全默认禁止了一下函数 > > 那么如何修改了,我这里的是lnmp环境,只需要修改php.ini文件然后重启PHP即可 > > > > > cd usr/local/php/etc/ > > > > > > vim php.ini > > > 只需要将下面的位置删除scandir即可 > > ![](http://blog.54zm.com/content/uploadfile/article/20190...
> 针对js各种遍历作一个总结分析,从类型用处:分数组遍历和对象遍历;还有性能,优缺点等。 ## JS数组遍历: 1,普通for循环,经常用的数组遍历 ```js var arr = [1,2,0,3,9]; for ( var i = 0; i for-of这个方法避开了for-in循环的所有缺陷 > 与forEach()不同的是,它可以正确响应break、continue和return语句 for-of循环不仅支持数组,还支持大多数类数组对象,例如DOM ...
## 简介 定时任务是后端开发过程中一项十分常见的需求,常出现在数据统计、垃圾信息清理等场景中。Laravel 提供了一整套的定时任务工具,让我们只需要专注地完成逻辑,剩下的基础工作将由它来承担。 ## 基本用法 ### 生成命令 ```php php artisan make:command AreYouOK ``` > 5.2 及之前的版本,此命令为 `php artisan make:console xxx` ### 编辑命令 编辑 `app/Consol...