PHP Magic Method __isset __unset (iii), __isset__unset_php tutorial

Source: Internet
Author: User

PHP Magic Method __isset __unset (c), __isset__unset


Slowly long search night, the moon hanging

__isset ()-a method that automatically executes __isset () if there is no or non-public property when using the Isset () method on a property in a class or in a non-class property

__unset ()-a method that automatically executes __unset () if there is no or non-public property when using the Unset () method on a property in a class or in a non-class property

 public = ' pub ';        $this->protected = ' Pro ';    $this->private = ' pri '; The Public Function __isset ($var) {echo ' Is here through the __isset () method to view the property named '. $var. '    \ n "; The Public Function __unset ($var) {echo ' Is here through the __unset () method to destroy the property named '. $var.    \ n "; }} $exa = new Example;echo '
Var_dump (Isset ($exa->public)), echo "\ n", Var_dump (Isset ($exa->protected)), echo "\ n"; Var_dump (Isset ($exa- >private); echo "\ n"; Var_dump (Isset ($exa->novar)); echo "\ n"; Echo '
 
   '; unset ($exa->public); Var_dump ($exa); echo "\ n"; unset ($exa->protected); echo "\ n"; unset ($exa->private); echo "\ n"; unset ($exa->novar); echo "\ n";

The results are as follows:

BOOL (true) here the __isset () method is used to view the property named Protectedbool (false) here through the __isset () method to view the property named Privatebool (false) here, the __isset () method is used to view the property named Novarbool (false)------------------- -----------------------------------------------------------Object(Example) #1 (2  ) {  ["protected:protected"]=>  string(3  "Pro"  ["private:private"]=>  string( 3 " pri " Here Pass the __unset () method to destroy the property named protected here through the __unset () method to destroy the property named private here through the __unset () method to destroy the property named Novar

http://www.bkjia.com/PHPjc/916822.html www.bkjia.com true http://www.bkjia.com/PHPjc/916822.html techarticle PHP Magic Method __isset __unset (three), __isset__unset slowly long seek night, the moon Hanging __isset ()-In the class or non-class properties of the use of the Isset () method if there is no or ...

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.