PHP

关于搭建php电商环境时缺少fileinfo、数据库安装出错问题解决办法

  今天以WSTMart电商系统为例讲解  搭建php电商环境缺少fileinfo、数据库安装出错问题找了很多方法都没能很好解决,该方法简单明了,容易操作 首先需要到开源中国中下载该系统源码,网址为:http://www.oschina.net/,很实用的一个网站;还需...

ssh报错No operations allowed after connection closed.Connection was implicitly clos

###Errorqueryingdatabase.Cause:com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException:Nooperationsallowedafterconnectionclosed.网上查了下,由于使用了默认配置,空闲超...

Linux(环境篇):系统搭建本地FTP后,无法登录(331 Please specify the password.)问题解决

  首先Linux搭建ftp,开放21端口。(省略。。。)你可能会遇到以下问题:错误SELinuxisdisabled解决:setenforce:SELinuxisdisabled那么说明selinux已经被彻底的关闭了如果需要重新开启selinux,请按下面步骤:vi/etc/selinux/co...

rg.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session:

原先跑TESTCASE的时候没有出错但是跑到整个程序里面,除了这个问题,网上也找了下资料,说是用merge之类的可以解决,因为你这个update的obj和session里面的不用,所以导致此问题。突然石化~~~想到session~~~想到TESTcase的时候没有用事物aop所以每个方法都是一个事物,所以当然没问题,而...

Cannot start compilation: the output path is not specified for module "salesystem". Specify the output path in Configure Project.

错误是发生在从github上checkout自己的项目时。因为没有将配置文件一起上传,所以在运行java程序时有了这个报错:Cannotstartcompilation:theoutputpathisnotspecifiedformodule“Test”.Specifytheoutputpath...

Configuration Error: deployment source 'SocietyManage:war exploded' is not valid

ConfigurationError:deploymentsource'SocietyManage:warexploded'isnotvalid原因:没有下图的底下的红色框的内容.(不能部署源码,需要部署war包什么的)正确操作顺序,:然后:然后确认下图的信息都齐全即可:然后即可部署成功....

Maven 错误 :The POM for com.xxx:jar:0.0.1-SNAPSHOT is invalid, transitive dependencies (if any) will not be available

一个大的maven项目,结构是一个根pom,下面几个小的module,包括了appservice-darc,appservice-entity等,其中appservice-darc依赖了 appservice-entity。 但是呢,对根项目的pom,执行mvncleancomplie是没问题的,但...
代码星球·2020-04-06

【PHP】Composer使用简介,composer install 和 update 区别

1、composer是php的依赖包管理工具2、符合PSR-0/1/2/3/4规范3、composer安装推荐使用国内镜像4、composerrequire/install/update区别:然而,对于如何『安装他们』,新手可能并不清楚。网上的答案有的说composerinstall,有的说composerupdate...

【php】php5.0以上,instanceof 用法

1、instanceofphp官网:http://php.net/manual/zh/language.operators.type.php2、instanceof 用于确定一个PHP变量是否属于某一类 class 的实例3、使用方法:子类soninstanceof父类fatherinst...

【php】php输出jquery的轮询,5秒跳转指定url

1、在php中直接输出jquery的轮询,5秒后跳转指定url2、代码稍微改动,即可在html中使用3、代码:publicfunctionalpha(){$html='<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.or...

【PHP】php生成一个不重复的数字(订单号、会员号)

1、目的:利用php的do..while生成一个不重复的字符串或者数组,比如(订单号、会员号)2、不废话,代码来:$repeat_order=array();do{$ordersn=date('md').random(8,1);$repeat_order=pdo_fetch("SELECT*FROM".tablenam...

【strpos】php的strpos的坑,记一次

php>var_dump(strpos('开始23测试ceshi','测试'));int(8)php>var_dump(mb_strpos('开始23测试ceshi','测试'));int(4)php>var_dump(strpos('123测试ceshi','测试'));int(3)php>v...
代码星球·2020-04-06

php新特性:trait 关键字使用

1、trait关键字:含义【特性】 1.1和requireinclude区别:后两者需要实例化一个类或者静态调用,而trait相当于继承,但又不是extends关键字,它解决了单继承。2、目的:解决php的单继承问题3、使用关键词【use】在控制器或者其他model类引入,如:<?phptraitKK{...

【laravel5.4】PHP5.6+ 调用命名空间下类方法、属性和对象

1、调用命名空间的类方法,对象、属性类对象:AppUser();类方法:AppUser::find($this->user_id)    //查询构造器方法,将$this->user_id设置成view()->share('user_id',$this->user_id);类属性:AppUser...