`
rorely
  • 浏览: 119678 次
  • 性别: Icon_minigender_2
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
Call   to   undefined   function   mysql_connect()问题的解决方法 配置php与mysql的连接 php.ini文件 看加粗部分。 ; Windows Extensions ; Note that ODBC support is built in, so no dll is needed for it. ; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5) ; extension folders as well as the separate P ...
编程十诫 发布时间:2009-6-09 08:52 作者: 陈皓 信息来源: PHPChina  转自:http://www.phpchina.com/html/83/n-34583.html1.- DRY: Don’t repeat yourself. DRY 是一个最简单的法则,也是最容易被理解的。但它也可能是最难被应用的(因为要做到这样,我们需要在泛型设计上做相当的努力,这并不是一件容易的事)。它意味着,当我们在两个或多个地方的时候发现一些相似的代码的时候,我们需要把他们的共性抽象出来形一个唯一的新方法,并且改变现有的地方的代码让他们以一些合适的参数调用这个新的方法。 DRY 这一 ...
转自:http://tech.itzero.com/2006/1015/1202.html 我们要把现实世界中的各种信息转换成计算机能理解的东西,这些转换后的信息就形成了数据。例 如,某人的出生日期是“1987年5月23日”,他的身高是170厘米,等等。数据不仅包括数字、 ...
<?php        #使用反撇号,暗示作为命令来执行     $result=`date`;     echo "<p>the server timestamp is: $result</p>";     echo "<hr color=red>";     #使用shell_exec()     $result1=shell_exec("date");     echo "<p>the server timestamp is: $result1</p> ...
<?php        #使用反撇号,暗示作为命令来执行     $result=`date`;     echo "<p>the server timestamp is: $result</p>";     echo "<hr color=red>";     #使用shell_exec()     $result1=shell_exec("date");     echo "<p>the server timestamp is: $result1</p> ...
<?php     #删除空目录     function delDir($dir){         if($od=@opendir($dir)){             while(($file=readdir($od))!=false){                 if(($file==".")||($file==".."))continue;                 if(is_dir($dir."/".$file)) delDir($dir."/".$file);            ...
<?php     #删除空目录     function delDir($dir){         if($od=@opendir($dir)){             while(($file=readdir($od))!=false){                 if(($file==".")||($file==".."))continue;                 if(is_dir($dir."/".$file)) delDir($dir."/".$file);            ...
在php中,文件操作中,filetype(string),结果有8中:block,char,dir,fifo,file,link,socket,unknown <?php     #文件名称     echo basename("file/fileTest.php")."<hr color=red>";     #文件名称,不含后缀     echo basename("file/fileTest.php",".php")."<hr color=red>";     ...
在php中,文件操作中,filetype(string),结果有8中:block,char,dir,fifo,file,link,socket,unknown <?php     #文件名称     echo basename("file/fileTest.php")."<hr color=red>";     #文件名称,不含后缀     echo basename("file/fileTest.php",".php")."<hr color=red>";     ...

php 反射类

    博客分类:
  • PHP
反射类ReflectionClass,其中包含的方法可以通过下面的方法获取:示例如下。 <?php     $class=new ReflectionClass("ReflectionClass");     $methods=$class->getMethods();     foreach($methods as $method)         echo $method->getName()."<br>";  ?> 运行结果如下: __clone export __construct __toString get ...

php 反射类

    博客分类:
  • PHP
反射类ReflectionClass,其中包含的方法可以通过下面的方法获取:示例如下。 <?php     $class=new ReflectionClass("ReflectionClass");     $methods=$class->getMethods();     foreach($methods as $method)         echo $method->getName()."<br>";  ?> 运行结果如下: __clone export __construct __toString get ...
接口的创建使用关键字interface,实现接口,使用关键字implements。接口的方法全部是public方法,而且没有方法体。一个类可以实现多个接口。示例如下: <?php     interface myInterface{         const str="中国你好";         public function getV();         public function getH($name,$value);     }     interface expressEmotion{         public function getEmotio ...

php 类继承--单继承

    博客分类:
  • PHP
<?php     class BaseClass{         function __construct(){             echo "<br><font color=red>this is the base class constructor</font><br>";         }     }     class SubClass extends BaseClass{         function __construct(){ #子类调用父类构造方法的两种,父类名::__construct() ...

php 类继承--单继承

    博客分类:
  • PHP
<?php     class BaseClass{         function __construct(){             echo "<br><font color=red>this is the base class constructor</font><br>";         }     }     class SubClass extends BaseClass{         function __construct(){ #子类调用父类构造方法的两种,父类名::__construct() ...

php 拷贝对象

    博客分类:
  • PHP
clone方法的使用,浅拷贝对象。示例如下: <?php     class Foo{         private $x;         private $y;         public function setX($x){             $this->x=$x;         }         public function setY($y){             $this->y=$y;         }         public function getX(){             return $this->x;        ...
Global site tag (gtag.js) - Google Analytics