w3-tools.com - Free Webmaster Tools and Resources
 
w3-tools.com - Free Webmaster Tools and Resources
 Free Webmaster Tools and Resources

 



PHP Manual

This manual is provided as a courtesy. It is not an official source. Please check php.net for updated information.

PHP Manual

PHP Manual

property_exists

(PHP 5 >= 5.1.0RC1)

property_exists --  Checks if the object or class has a property

Description

bool property_exists ( mixed class, string property )

This function checks if the given property exists in the specified class (and if it was declared as public).

Note: As opposed with isset(), property_exists() returns TRUE even if the property has the value NULL.

Parameters

class

A string with the class name or an object of the class to test for

property

The name of the property

Return Values

Returns TRUE if the property exists or FALSE otherwise.

Examples

Example 1. A property_exists() example

<?php

class myClass {
    
public $mine;
    
private $xpto;
}

var_dump(property_exists('myClass', 'mine'));   //true
var_dump(property_exists(new myClass, 'mine')); //true
var_dump(property_exists('myClass', 'xpto'));   //false, isn't public

?>

See Also

method_exists()

Newsletter

Join to our newsletter and receive news and updates about our site.
Your name: 
E-mail address: 
Action: 
 

Hosted by

Search

Google
Web w3-tools.com

Links

  What is my IP? Find your IP address!     Valid XHTML 1.0 Transitional  
Copyright © 2006. by w3-tools.com. All rights reserved