mirror of
https://github.com/php/php-src.git
synced 2024-11-29 12:53:37 +08:00
7e5a07ab93
- output of spl_classes differs from 5_2 to 5_3, changed to is_array
14 lines
181 B
PHP
14 lines
181 B
PHP
--TEST--
|
|
SPL: spl_classes() function
|
|
--CREDITS--
|
|
Sebastian Schürmann
|
|
sebs@php.net
|
|
Testfest 2009 Munich
|
|
--FILE--
|
|
<?php
|
|
var_dump(is_array(spl_classes()));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
|