1 2 3 4 5 6 | <?php $data = array (1, 1., NULL, new stdClass, 'foo' ); foreach ( $data as $value ) { echo gettype ( $value ), "\n" ; } |
1 2 3 4 5 6 | <?php $data = array (1, 1., NULL, new stdClass, 'foo' ); foreach ( $data as $value ) { echo gettype ( $value ), "\n" ; } |