PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<method_existsCOM>
Last updated: Mon, 16 Jul 2012

property_exists

(no version information, might be only in CVS)

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

说明

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).

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

参数

class

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

property

The name of the property

返回值

Returns TRUE if the property exists or FALSE otherwise.

例子 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

?>




<method_existsCOM>
 Last updated: Mon, 16 Jul 2012
 
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://manual.phpv.net/
Last updated: Thu Jul 7 19:13:47 2005 CST