1--TEST--
2get_object_vars() - ensure statics are not shown
3--FILE--
4<?php
5/* Prototype  : proto array get_object_vars(object obj)
6 * Description: Returns an array of object properties
7 * Source code: Zend/zend_builtin_functions.c
8 * Alias to functions:
9 */
10
11Class A {
12	public static $var = 'hello';
13}
14
15$a = new A;
16var_dump(get_object_vars($a));
17?>
18--EXPECTF--
19array(0) {
20}