search
Homephp教程php手册PHP面向对象中的重要知识点(二)

1. __toString:

 

    当对象被打印时,如果该类定义了该方法,则打印该方法的返回值,否则将按照PHP的缺省行为输出打印结果。该方法类似于Java中的toString()。

 

复制代码

class TestClass {

    public function __toString() {

        return "This is TestClass::__toString.\n";

    }

}

 

$testObj = new TestClass();

print $testObj;

复制代码

    运行结果如下:

 

Stephens-Air:Desktop$ php Test.php 

This is TestClass::__toString.

2. __get和__set:

 

    这两个方法用于处理类中未声明的属性访问。当对象使用者试图访问未声明的对象属性时,__get()会被调用,并带有一个包含要访问的属性名称字符串作为参数。无论从__get()方法返回什么,都会直接返回给调用者,就如同带有该值的属性存在一样。另外需要注意的是,如果属性存在,但是其访问可见性为private或protected,那么这两个拦截方法同样会被调用,反之,如果属性存在切可访问,那么直接访问属性即可,这两个方法将不再会被调用。以下为__get()拦截方法的示例代码:

 

复制代码

class TestClass {

    private $privateField;

    public $publicField;

    public function __construct() {

        $this->privateField = "This is a private Field.\n";

        $this->publicField = "This is a public Field.\n";

    }

 

    public function __get($property) {

        print "__get() is called.\n";

        $method = "get${property}";

        if (method_exists($this, $method)) {

            return $this->$method();

        }

        return "This is undefined field.\n";

    }

    public function getPrivateField() {

        return $this->privateField;

    }

}

 

$testObj = new TestClass();

print $testObj->privateField;

print $testObj->undefinedField;

print $testObj->publicField;

复制代码

    运行结果如下:

 

Stephens-Air:Desktop$ php Test.php 

__get() is called.

This is a private Field.

__get() is called.

This is undefined field.

This is a public Field.

    __set()方法被调用的规则和__get()基本相同,差别是用于拦截未定义或不可见类属性的赋值操作。另外,该方法接收两个参数,分别是属性名称和要设定的值。见如下代码示例:

 

复制代码

class TestClass {

    private $privateField;

    public $publicField;

    public function __construct() {

        $this->privateField = "This is a private Field.\n";

        $this->publicField = "This is a public Field.\n";

    }

    public function __get($property) {

        print "__get() is called.\n";

        $method = "get${property}";

        if (method_exists($this, $method)) {

            return $this->$method();

        }

        return "This is an undefined field.\n";

    }

    public function __set($property, $value) {

        print "__set is called.\n";

        $method = "set${property}";

        if (method_exists($this, $method)) {

            $this->$method($value);

        } else {

            print "This is an undefined field.\n";

        }

    }

    public function getPrivateField() {

        return $this->privateField;

    }

    public function setPrivateField($value) {

        $this->privateField = $value;

    }

}

 

$testObj = new TestClass();

$testObj->privateField = "This is a private Field after set.\n";

$testObj->undefinedField = "This is a undefined Field after set.\n";

$testObj->publicField = "This is a public Field after set.\n";

 

print $testObj->privateField;

print $testObj->undefinedField;

print $testObj->publicField;

复制代码

    运行结果如下:

 

复制代码

Stephens-Air:Desktop$ php Test.php 

__set is called.

__set is called.

This is an undefined field.

__get() is called.

This is a private Field after set.

__get() is called.

This is an undefined field.

This is a public Field after set.

复制代码

3. __isset和__unset:

 

    这两个拦截方法被调用的规则和__get()和__set()非常类似,只是用于类中不存在或不可见属性被isset()和unset()两个全局方法应用时才会被分别触发。 

 

复制代码

class TestClass {

    private $privateField;

    public $publicField;

    public function __construct() {

        $this->privateField = "Defined private field";

        $this->publicField = "Defined public field";

    }

    public function __isset($property) {

        print "__isset is called.\n";

        return isset($this->$property);

    }

    public function __unset($property) {

        print "__unset is called.\n";

        if (isset($this->$property)) {

            unset($this->$property);

        }

    }

}

 

$testObj = new TestClass();

print 'isset($testObj->privateField) is '.(isset($testObj->privateField) ? "true" : "false")."\n";

print 'isset($testObj->undefinedField) is '.(isset($testObj->undefinedField) ? "true" : "false")."\n";

print 'isset($testObj->publicField) is '.(isset($testObj->publicField) ? "true" : "false")."\n";

 

print "After unset......\n";

//下面两个函数调用后,$testObj的两个对象属性均会变为不可用。

//另外从输出结果来看,__unset方法仅仅被调用一次,因为publicField为可见属性,所以__unset不会因该属性而被调用。

unset($testObj->privateField);

unset($testObj->publicField);

 

print 'isset($testObj->privateField) is '.(isset($testObj->privateField) ? "true" : "false")."\n";

print 'isset($testObj->publicField) is '.(isset($testObj->publicField) ? "true" : "false")."\n";

复制代码

    运行结果如下:

 

复制代码

Stephens-Air:Desktop$ php Test.php 

__isset is called.

isset($testObj->privateField) is true

__isset is called.

isset($testObj->undefinedField) is false

isset($testObj->publicField) is true

After unset......

__unset is called.

__isset is called.

isset($testObj->privateField) is false

__isset is called.

isset($testObj->publicField) is false

复制代码

4. __call:

 

    __call()方法是一个非常有用但又非常容易被滥用的拦截方法。当对象使用者试图访问当前对象未定义的成员函数时,__call()会被自动调用,同时传递两个参数,分别为函数名称和传递给调用函数的所有参数(数组)。__call方法返回的任何值都会返回给函数调用者,就如同该成员函数真实存在一样。下面给出一个非常有用的委托示例。 

 

复制代码

class DelegateClass {

    function printMessage($arg1, $arg2) {

        print "DelegateClass:delegatedMethod is called.\n";

        print '$arg1 = '.$arg1.'and $arg2 = '.$arg2."\n";

    }

}

class TestClass {

    private $delegateObj;

    public function __construct() {

        $this->delegateObj = new DelegateClass();

    }

    public function __call($method, $args) {

        $this->delegateObj->$method($args[0],$args[1]);

    }

}

 

$testObj = new TestClass();

$testObj->printMessage("hello","world");

复制代码

    运行结果如下:

 

Stephens-Air:Desktop$ php Test.php 

DelegateClass:delegatedMethod is called.

$arg1 = helloand $arg2 = world

    从以上示例可以看出,TestClass并未声明printMessage成员方法,但是通过__call()方法的巧妙桥接直接传递给了委托对象。个人认为该技巧为双刃剑,切勿过度使用。

 

5. 回调函数: 

 

    回调函数的应用场景无须多述,在C/C++中充斥着无数的回调函数典型用例。 这里只是简单给出PHP中回调函数的使用规则。见如下示例代码和关键性注释: 

 

复制代码

class Product {

    public $name;

    public $price;

    public function __construct($name, $price) {

        $this->name = $name;

        $this->price = $price;

    }

}

 

class ProcessSale {

    private $callbacks;

    function registerCallback($cb) {

        if (!is_callable($cb)) {

            throw new Exception("callback not callable.");

        }

        $this->callbacks[] = $cb;

    }

    function sale($product) {

        print "{$product->name}: processing \n";

        foreach ($this->callbacks as $cb) {

            //以下两种调用方式均可。

            call_user_func($cb, $product);

            $cb($product);

        }

    }

}

 

$logger = function($product) {

    print "    logging ({$product->name})\n";

};

 

$processor = new ProcessSale();

$processor->registerCallback($logger);

$processor->sale(new Product("shoes",6));

print "\n";

$processor->sale(new Product("coffee",6));

复制代码

    运行结果如下:

 

复制代码

Stephens-Air:Desktop$ php Test.php 

shoes: processing 

    logging (shoes)

    logging (shoes)

 

coffee: processing 

    logging (coffee)

    logging (coffee)

复制代码

6. use(闭包):

 

    在Javascript中存在大量的闭包应用,PHP中的闭包则是通过use关键字来完成的。对于闭包这个概念本身而言,简要的说就是函数内的代码可以访问其父作用域中的变量。见如下示例代码和关键性注释:

 

复制代码

class Product {

    public $name;

    public $price;

    public function __construct($name, $price) {

        $this->name = $name;

        $this->price = $price;

    }

}

 

class ProcessSale {

    private $callbacks;

    function registerCallback($cb) {

        if (!is_callable($cb)) {

            throw new Exception("callback not callable.");

        }

        $this->callbacks[] = $cb;

    }

    function sale($product) {

        print "{$product->name}: processing \n";

        foreach ($this->callbacks as $cb) {

            $cb($product);

        }

    }

}

 

class Totalizer {

    static function warnAmount($amt) {

        $count = 0;

        //注意这里的$amt和$count均为闭包变量,其中&$count是以引用的形式传递的,即一旦函数内部修改了该变量的值,

        //那么下次再访问该闭包变量时,$count将为之前调用中修改后的值。

        return function($product) use($amt, &$count) {

            $count += $product->price;

            print "     count: $count\n";

            if ($count > $amt) {

                print "     high price reached: {$count}\n";

            }

        };

    }

}

 

$processor = new ProcessSale();

$processor->registerCallback(Totalizer::warnAmount(8));

$processor->sale(new Product("shoes",6));

$processor->sale(new Product("coffee",6));

复制代码

    运行结果如下:

 

shoes: processing 

     count: 6

coffee: processing 

     count: 12

     high price reached: 12

注:该Blog中记录的知识点,是在我学习PHP的过程中,遇到的一些PHP和其他面向对象语言相比比较独特的地方,或者是对我本人而言确实需要簿记下来以备后查的知识点。虽然谈不上什么深度,但是还是希望能与大家分享。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft