Skip to content

Tag: object

How to define an empty object in PHP

with a new array I do this: Is there a similar syntax for an object Answer A comment in the manual sums it up best: stdClass is the default PHP object. stdClass has no properties, methods or parent. It does not support magic methods, and implements no interfaces. When you cast a scalar or array as Object, you…