标签 PHP 下的文章

mb_strimwidth

按字符宽度获取mb_strimwidth ( string $str , int $start , int $width [, string $trimmarker [, string $encoding ]] )参数说明:$str //指定字符串$start //指定从何处开始截取$width //截取文字的宽度$trimmarker //超过$width数字后显示的字符串$encodin...

继续阅读 »

php魔术方法__call和__callStatic

__call($name,$arguments) 当对象访问不存在时候,__call被调用__callStatic 当对象访问不存在的静态方法时候,__callStatic被调用 定义时也要把__callStatic定义为静态方法 public static __callStatic($name,$arguments) 使用两个点访问静态方法 test::runtest();

继续阅读 »

php抽象类

abstract class:抽象类 abstract public function:抽象方法,这个方法还没有实现 public function:普通方法,抽象类中已经实现了继承抽象类 使用 extends 关键字抽象类是介于接口和类指尖的

继续阅读 »