downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<Classes/Object FunctionsClasskit>
Last updated: Thu, 26 Jun 2008

property_exists

(PHP 5 >= 5.1.0)

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 is accessible from the current scope).

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

Parameters

class

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, FALSE if it doesn't exist or NULL in case of an error.

Examples

Example #1 A property_exists() example

<?php

class myClass {
  
public $mine;
  
private $xpto;

   static function
test() {
      
var_dump(property_exists('myClass', 'xpto')); // true, it can be accessed from here
  
}
}

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
myClass::test();

?>

See Also



add a noteadd a note User Contributed Notes
Checks if the object or class has a property
There are no user contributed notes for this page.




<Classes/Object FunctionsClasskit>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs