Description
array
get_object_vars
( object obj)
If
variables
declared
in
the
class
of
which
the
obj
is
an
instance
,
have
not
been
assigned
a
value
,
those
will
not
be
returned
in
the
array
.
The printout of the above program will be:
Array
(
[x
]
=
1.233
[y
]
=
3.445
)
Array
(
[x
]
=
1.233
[y
]
=
3.445
[label
]
=
point
#1
)
|