摘要: Linux 下安装Yaf扩展 , 编译出错 error: ‘zend_yaf_globals’ has no member named ‘default_route’ 阅读全文
posted @ 2016-07-09 16:58 justphp 阅读(1919) 评论(3) 推荐(2) 编辑
摘要: mysql数据库报错The user specified as a definer (”@sa’%') does not exist。尝试过两种方式,第一种重启之后好用,但是一会就又不好用了。第二种算是一种完美的解决方法。此种报错主要是针对访问视图文件引起的。 第一种: 给root赋值所有权限:注意 阅读全文
posted @ 2016-06-23 19:47 justphp 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 数据结构,冒泡排序的PHP实现 阅读全文
posted @ 2016-02-28 09:28 justphp 阅读(188) 评论(0) 推荐(0) 编辑
摘要: PHP中 Include 与 Require之间的区别 阅读全文
posted @ 2016-02-27 23:18 justphp 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 1.下载phpunit.phar 2.在phpstorm中配置phpunit库 3.不同版本phpunit 需要依赖的php解释器也不一样,如果运行时报错 可以适当调整php解释器的版本 至此进行phpunit单元测试环境已经搭建完成。 阅读全文
posted @ 2016-02-18 23:14 justphp 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 1.CSS特殊属性,取消点击事件: pointer-events:none2.PHP数组 反转函数:array_flip()3.使用echo的多重参数(译注:指用逗号而不是句点)代替字符串连接。eg:$test = " hello ";echo $test , "fanwenqi"," is a "... 阅读全文
posted @ 2014-04-04 14:58 justphp 阅读(185) 评论(0) 推荐(0) 编辑
摘要: public static ArrayList newjdbc(String url , String sql) { Connection conn=null; Statement st=null; ResultSet rt=null; ArrayList data = new ArrayList(); try { Class.forName("com.mysql.jdbc.Driver"); conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/vapor?user=root&pa 阅读全文
posted @ 2014-03-23 21:23 justphp 阅读(215) 评论(0) 推荐(0) 编辑
摘要: eclise快捷键F3跳转到类的实现方法,出现如图所示问题:source notfoundchange atttached source。点击下图红圈,Change Attached Source 出现下图所示,对话框,选择src.zip,然后点击打开,src.zip在java的jdk目录下。Ok了,点击Ok,搞定了,按eclipse快捷键F3,有用了参考:http://jingyan.baidu.com/article/642c9d34d00d8c644a46f79c.html 阅读全文
posted @ 2014-03-23 20:48 justphp 阅读(577) 评论(0) 推荐(0) 编辑
摘要: Python学习笔记 阅读全文
posted @ 2014-03-18 17:15 justphp 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 入口:package chat;import java.net.DatagramSocket;import java.net.SocketException;public class chat { /** * @param args * @throws SocketException */ public static void main(String[] args) throws SocketException { // TODO Auto-generated method stub DatagramSocket sd = new DatagramSocket(); Datagr... 阅读全文
posted @ 2014-03-15 20:41 justphp 阅读(230) 评论(0) 推荐(0) 编辑