2014年12月25日

PHP 中xampp不能启动服务器的问题

摘要: 有时候别人电脑上面的XAMPP,你把安装文件拷贝下来后,会发现,自己的电脑上用不了这个时候有很多种情况1. 关闭你自己电脑上有可能暂用80端口的程序2.D:\xampp\apache\conf\httpd.conf到这个文件中修改46行的代码#Listen 0.0.0.0:80#Listen [::... 阅读全文

posted @ 2014-12-25 16:17 手撕高达的村长 阅读(219) 评论(0) 推荐(0) 编辑

Java-Hibernate官方英文文档地址

摘要: Hibernate官方英文文档地址 http://docs.jboss.org/hibernate/orm/4.3/manual/en-US/html/ 阅读全文

posted @ 2014-12-25 13:56 手撕高达的村长 阅读(173) 评论(0) 推荐(0) 编辑

PHP 的try catch 报错捕获机制

摘要: 首先上代码:try { echo 'Never executed'; echo ""; if(1"; echo 'Caught exception: ', $error->getMessage(), "\n"; echo 'Caught exception: ', $error->ge... 阅读全文

posted @ 2014-12-25 10:28 手撕高达的村长 阅读(1179) 评论(0) 推荐(0) 编辑

PHP面向对象的基本写法(区别于java)

摘要: name = $name; $this->age = $age; $this->sex = $sex; } function say(){ echo "Hello world"; echo self::$my . "\n"; }}$student = new ClassName("sun",2... 阅读全文

posted @ 2014-12-25 10:24 手撕高达的村长 阅读(705) 评论(0) 推荐(0) 编辑

导航