Check if an object has no properties.
Code
Generalempty((array)$obj) ? 'true' : 'false';Parameters
Object to check
Server
More PHP Snippets
Deep Clone Object
Create a deep copy of an object (handles nested objects and arrays).
Get Nested Value
Safely get a nested property value from an object.
Merge Objects
Merge two objects together (shallow merge).
Array Difference
Find elements in the first array that are not present in the second array.
Array Frequencies
Count how many times each value appears in an array and return a frequency map.
Array Head
Get the first n elements of an array.