上一页 1 ··· 7 8 9 10 11 12 下一页

2017年7月16日

php 递归遍历目录带缩进

摘要: '; //判断当前是否为目录 if(is_dir($path . '/' . $file)) { //是目录 $func_name = __FUNCTION__; $func_name($path . '/' . $file, 1+$deep); } } cl... 阅读全文

posted @ 2017-07-16 10:20 huodaihao 阅读(248) 评论(0) 推荐(0) 编辑

php 递归遍历目录

摘要: '; //判断当前是否为目录 if(is_dir($path . '/' . $file)) { //是目录 readDirs($path . '/' . $file); } } closeDir($dir_handle); } // $path = './'; // readDirs($path); 阅读全文

posted @ 2017-07-16 10:17 huodaihao 阅读(3745) 评论(0) 推荐(0) 编辑

2017年7月2日

php session

摘要: session_1.php session_2.php 阅读全文

posted @ 2017-07-02 16:54 huodaihao 阅读(128) 评论(0) 推荐(0) 编辑

2017年6月29日

apache主机配置

摘要: Apache\conf\httpd.conf 1.端口 #Listen 12.34.56.78:80Listen 80Listen 808 #可以配置多个监听端口 2. 主机(站点)的名字:ServerName “主机名” 主机(站点)的实际文件夹位置:DocumentRoot “站点的实际完整路径 阅读全文

posted @ 2017-06-29 07:26 huodaihao 阅读(141) 评论(0) 推荐(0) 编辑

2017年6月28日

php环境配置的检测方法

摘要: 测apache配置文件语法 使用apache/bin/目录中的httpd.exe命令,可以检测apache的配置文件中的语法问题。 使用形式如下: httpd.exe -t 在遇到apache 启动不成功的时候可以用这种方法定位问题 阅读全文

posted @ 2017-06-28 06:43 huodaihao 阅读(245) 评论(0) 推荐(0) 编辑

2017年6月25日

php 变量

摘要: 变量的基本使用 定义变量(赋值):直接给变量赋值,就是定义; 不支持js中的那种“定义但不赋值”的语法。 换句话说,第一次给一个变量赋值,就算定义变量。 取值:所有需要一个变量值的语句中,就会取得该变量的值,常见包括: 输出:echi $v1; //取得$v1的值,并输出 给其他变量赋值$v2 = 阅读全文

posted @ 2017-06-25 21:52 huodaihao 阅读(156) 评论(0) 推荐(0) 编辑

2017年6月24日

php MVC

摘要: ./Factory.class.php ./match_list_c.php ./MatchModel.class.php ./Model.class.php ./MySQLDB.class.php ./template/.htaccess Deny from All ./template/matc 阅读全文

posted @ 2017-06-24 19:26 huodaihao 阅读(307) 评论(0) 推荐(0) 编辑

php spl_autoload_register

摘要: spl_autoload_register 可以同时注册多个自动加载函数。 ./kang/H.class.php <?php class H { } ./kang/kang.php <?phpfunction kangAutoload($class_name) { echo 'kangAutoloa 阅读全文

posted @ 2017-06-24 09:25 huodaihao 阅读(147) 评论(0) 推荐(0) 编辑

php类的访问修饰符

摘要: Public, protected, private 用来描述: 成员,在源代码中的哪些位置可以访问 。 Public:公共的:类内,类外,继承链类内 Protected: 类内,继承链类内。 Private:本类内。 一:Private:本类内。 <?phpclass H { // public 阅读全文

posted @ 2017-06-24 06:55 huodaihao 阅读(429) 评论(0) 推荐(0) 编辑

2017年6月23日

php 普通方法和静态方法

摘要: <?php header('Content-Type: text/html; charset=utf-8'); class Student { public static function getStudentCount() { var_dump($this); return 42; } publi 阅读全文

posted @ 2017-06-23 23:19 huodaihao 阅读(110) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 下一页

导航