Answers for "how to check if an object has a value php"

PHP
2

php check if object has attribute

if(property_exists($car,color)){
	//$car->color exists
}
Posted by: Guest on June-19-2019
0

check if value exists in object php

if (property_exists($ob, 'a'))
Posted by: Guest on July-29-2021

Code answers related to "how to check if an object has a value php"

Browse Popular Code Answers by Language