PHP | property_exists() Function
November 12, 2020
Hello dear readers! welcome back to another edition of our tutorial on PHP. In this tutorial guide, we are going to be discussing about the PHP property_exists() Function.
PHP property_exists() Function checks if the given property exists in the specified class (and if it is also accessible from the current scope).
PHP property_exists() Function checks if the given property exists in the specified class (and if it is also accessible from the current scope).
Syntax
Following below is the syntax to use this function -
property_exists ( $object, $property );
RECOMMENDED POST: PHP | easter_date() Function
Parameter Details
Sr.No | Parameter & Description |
---|---|
1 | object(Required) The helloed object |
2 | property(Required) The name of the property. |
Return Value
This function returns TRUE if the property exists, FALSE if it doesn't exist or NULL in case of an error.
Example
Try out the below example -
<?php class hello { public $property; public f1() { echo($property); } } property_exists('hello', 'property'); property_exists('hello', 'Property'); ?>
RECOMMEDED POST: PHP | method_exists() Function
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial guide, we are going to be discussing about PHP Character Function.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.