摘要: IntroductionAll of the configuration files for the Laravel framework are stored in theapp/configdirectory. Each option in every file is documented, so... 阅读全文
posted @ 2014-10-24 19:30 wuhn 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 最近一位大学老师给我抱怨了一个她遇到的烦恼,一直在纠结,生活都被打乱了,事情大概是这样的: 她的优盘里辛辛苦苦弄好备课文件,放在了优盘里,可是每次上课时,就是找不到文件。有时好多文件都被修改了,非常烦恼。 第一次找到我后,我仔细看了看,应该是中了文件夹图标病毒,这类病毒的一般性质是:将优盘里面真... 阅读全文
posted @ 2014-10-24 19:11 wuhn 阅读(5189) 评论(0) 推荐(0) 编辑
摘要: 一.安装Composer首先你需要安装Composer,Composer是PHP依赖管理工具,Laravel框架就是使用Composer执行安装和依赖管理。注:(1)若安装Composer出错,在php.ini中开启php_openssl,php_fileinfo扩展,因为Laravel需要。(2)... 阅读全文
posted @ 2014-10-24 19:08 wuhn 阅读(272) 评论(0) 推荐(0) 编辑
摘要: Where To StartLearning a new framework can be daunting, but it's also exciting. To smooth your transition, we've attempted to create very clear, conci... 阅读全文
posted @ 2014-10-24 19:03 wuhn 阅读(213) 评论(0) 推荐(0) 编辑
摘要: InstallationVia Laravel InstallerFirst, download the Laravel installer using Composer.composer global require "laravel/installer=~1.1"Make sure to pla... 阅读全文
posted @ 2014-10-24 18:58 wuhn 阅读(373) 评论(0) 推荐(0) 编辑
摘要: “Swift is a new programming language for iOS and OS X app development. Nonetheless, many parts of Swift will be familiar from your experience of devel... 阅读全文
posted @ 2014-10-24 13:36 wuhn 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 虚拟主机 (Virtual Host)是在同一台机器搭建属于不同域名或者基于不同 IP 的多个网站服务的技术. 可以为运行在同一物理机器上的各个网站指配不同的 IP 和端口, 也可让多个网站拥有不同的域名.Apache 是世界上使用最广的 Web 服务器, 从 1.1 版开始支持虚拟主机. 本文将讲... 阅读全文
posted @ 2014-10-24 07:58 wuhn 阅读(244) 评论(0) 推荐(0) 编辑
摘要: Spring-framework source codegit url: git clone git://github.com/SpringSource/spring-framework.git导入IDERun ./import-into-eclipse.sh or read import-into... 阅读全文
posted @ 2014-10-24 03:08 wuhn 阅读(568) 评论(0) 推荐(0) 编辑
摘要: /** * Take a String which is a delimited list and convert it to a String array. * A single delimiter can consists of more than one charact... 阅读全文
posted @ 2014-10-24 03:01 wuhn 阅读(1680) 评论(0) 推荐(0) 编辑
摘要: In Java, you can use StringTokennizer class to split a String into different tokenas by defined delimiter.(space is the default delimiter). Here’re tw... 阅读全文
posted @ 2014-10-24 02:56 wuhn 阅读(514) 评论(0) 推荐(0) 编辑
摘要: /** * Delete any character in a given String. * @param inString the original String * @param charsToDelete a set of characters to dele... 阅读全文
posted @ 2014-10-24 02:09 wuhn 阅读(4003) 评论(0) 推荐(0) 编辑