Answers for "how to check empty object in php"

PHP
1

php check of object is empty

$arr = (array)$obj;
if (!$arr) {
    // do stuff
}
Posted by: Guest on September-23-2021
4

php empty object

$x = new stdClass();
Posted by: Guest on February-19-2020
0

php check if object is empty

if($users->count()==0){
					$result->errer = "not exist";
				}
Posted by: Guest on August-15-2021

Code answers related to "how to check empty object in php"

Browse Popular Code Answers by Language