diff --git a/guide/english/php/variables/data-types/index.md b/guide/english/php/variables/data-types/index.md index f789b382cd..f63dc0504e 100644 --- a/guide/english/php/variables/data-types/index.md +++ b/guide/english/php/variables/data-types/index.md @@ -109,3 +109,5 @@ $herbie = new Car(); echo $herbie->model; ?> ``` + +You can also use a predefined generic empty class `stdClass`. It's usefull for anonymous objects, dynamic properties or casting other types to object.