码迷,mamicode.com
首页 >  
搜索关键字:PHP5    ( 2820个结果
错误:php70w-common conflicts with php-common-5.3.3-49.el6.i686
记录一下 由于之前系统自带的php5.3.3没有卸载干净; 在执行phpize时报错说需要php-devel 然后yum -y install php-delel ; 然后就报错 错误:php70w-common conflicts with php-common-5.3.3-49.el6.x86_ ...
分类:Web程序   时间:2018-12-09 16:42:22    阅读次数:514
PHP 报错:Deprecated: Methods with the same name as their class will not be constructor...
报着个错的原因是 最近把一个项目从php5.6升级到了php7 报如下错误: Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP;nusoa ...
分类:Web程序   时间:2018-12-07 20:49:35    阅读次数:216
Query和PHP结合实现动态进度条上传显示
第一步:修改在php5下POST文件大小的限制1.编修php.ini找到:max_execution_time=30,这个是每个脚本运行的最长时间,单位秒,改为:max_execution_time=150找到:max_input_time=60,这是每个脚本可以消耗的时间,单位也是秒,修改为:max_input_time=300找到:memory_limit=128M,这个是脚本运行最大消耗的内
分类:Web程序   时间:2018-12-04 18:57:51    阅读次数:212
php-fpm多实例运行
php-fpm多实例运行
分类:Web程序   时间:2018-12-03 11:56:12    阅读次数:191
Centos 7.x yum安装php5.6.X(最新版)
1.检查当前安装的PHP包yumlistinstalled|grepphp如果有安装的PHP包,先删除他们yumremovephp.x86_64php-cli.x86_64php-common.x86_64php-gd.x86_64php-ldap.x86_64php-mbstring.x86_64php-mcrypt.x86_64php-mysql.x86_64php-pdo.x86_64配置y
分类:Web程序   时间:2018-11-29 17:59:45    阅读次数:150
php5.4 与 redis配置
官方下载地址:http://redis.io/download, 不过官方没有64位的Windows下的可执行程序, 目前有个开源的托管在github上, 地址:https://github.com/ServiceStack/redis-windows 点击这个地方, 下载文件并解压到自己的电脑目录 ...
分类:Web程序   时间:2018-11-25 16:19:25    阅读次数:290
PHP的匿名函数
一:匿名函数 (注意:在php5.3.0 或以上才能使用) php中的匿名函数(Anonymous functions), 也叫闭包函数(closures), 允许指定一个没有名称的函数。最常用的就是回调函数的参数值。 匿名函数的定义: 二:闭包 ...
分类:Web程序   时间:2018-11-25 14:38:43    阅读次数:175
php 面向对象:this 关键字
PHP5中为解决变量的命名冲突和不确定性问题,引入关键字“$this”代表其所在当前对象。 $this在构造函数中指该构造函数所创建的新对象。 在类中使用当前对象的属性和方法,必须使用$this->取值。 方法内的局部变量,不属于对象,不使用$this关键字取值。 局部变量和全局变量与 $this ...
分类:Web程序   时间:2018-11-25 14:29:24    阅读次数:482
PHP的Trait机制
PHP的Trait机制 Trait介绍: 1、自PHP5.4起,PHP实现了一种代码复用的方法,称为trait。2、Trait是为类似PHP的单继承语言二准备的一种代码复用机制。3、Trait为了减少单继承语言的限制,使开发人员能够自由地在不同层次结构内独立的类中复用method。4、trait实现 ...
分类:Web程序   时间:2018-11-21 15:37:06    阅读次数:360
isset在php5.6-和php7.0+的一些差异
今天在公司实现一个模块功能时写了如下代码: 居然报错, 在编译阶段就通不过了. Fatal error: Cannot use isset() on the result of an expression (you can use "null !== expression" instead) 错误信 ...
分类:Web程序   时间:2018-11-17 19:24:52    阅读次数:210
2820条   上一页 1 ... 23 24 25 26 27 ... 282 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!