PHP magic method __get __set (2), __get__set_PHP tutorial

WBOY
Release: 2016-07-13 10:13:19
Original
1037 people have browsed it

PHP magic method __get __set (2), __get__set

Slowly looking for the night, the bright moon hangs high in the sky

__get()  - When reading the value of an inaccessible attribute, __get() will be called

__set()  - When assigning values ​​to inaccessible properties, __set() will be called

<?php

/**
 * 清晰的认识__get() __set()
 */
class Example {
    
    //公有的属性
    public $public = 'pub' ;
    //受保护的 - 子类中该属性可用
    protected $protected = 'pro';
    //私有的 - 只能此类使用此属性
    private $private = 'pri';
    
    //当访问对象中的属性不存在或者非公有属性的时候自动加载__get()方法
    public function __get($name){
        return '调用__get()方法:'.$name;
    }
    
    //当给对象的一个属性赋值的时候如果该属性不存在或者是非公有属性则自动加载__set()方法
    public function __set($name,$value){
        echo "\nname:".$name.',value:'.$value."\n";
    }
}

$example = new Example;
echo '<pre class="brush:php;toolbar:false">';
echo $example->public."\n";
echo $example->protected."\n";
echo $example->private."\n";
echo $example->other."\n";
echo '<hr>';
$example->public = 'lic';   //这个赋值成功所有没有显示
$example->protected = 'tec';
$example->private = 'vat';
$example->other = 'er';
echo '<br/>';
echo '打印 public 属性:'.$example->public;
 
Copy after login

The results are as follows:

<span>pub
调用__get()方法:</span><span>protected</span><span>
调用__get()方法:</span><span>private</span><span>
调用__get()方法:other

name:</span><span>protected</span>,value:<span>tec

name:</span><span>private</span>,value:<span>vat

name:other</span>,value:<span>er

打印 </span><span>public</span> 属性:lic
Copy after login

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/916823.htmlTechArticlePHP magic method __get __set (2), __get__set slowly looking for the night, the bright moon hanging high in the sky __get() - When reading the value of an inaccessible attribute, __get() will be called __set() - When giving an inaccessible attribute...
Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!