Php Magic Method __isset, __unset use instance _python

Source: Internet
Author: User

__isset () – Automatically executes the __isset () method when the Isset () method is used for attributes in a class or in a non-class property, if there are no or no public properties

__unset ()-method for automatically executing __unset () when a unset () method is used for attributes in a class or in a class other than a public attribute

Copy Code code as follows:

<?php
/**
* Examples of __isset () and __unset () for magic methods in classes
*/

Class Example {
Public $public;
protected $protected;
Private $private;

Public Function __construct () {
$this->public = ' pub ';
$this->protected = ' Pro ';
$this->private = ' pri ';
}

Public Function __isset ($var) {
Echo ' Here through the __isset () method to view the property name '. $var. ' \ n ";
}

Public Function __unset ($var) {
Echo ' Here through the __unset () method to destroy the property name '. $var. ' \ n ";
}
}

$exa = new Example;

Echo ' <pre> ';
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, view the property name protected by the __isset () method

BOOL (FALSE)

Here, view the property name private by the __isset () method

BOOL (FALSE)

Here, view the property name Novar by the __isset () method

BOOL (FALSE)

Copy Code code as follows:

Object (Example) #1 (2) {
["Protected:protected"]=>
String (3) "Pro"
["Private:private"]=>
String (3) "PRI"
}

Here the __unset () method is used to destroy the property name protected

This is done using the __unset () method to destroy the property name private

Here the __unset () method is used to destroy the property name Novar

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.