1234567891011121314151617181920212223 |
- --TEST--
- Phi sources remove 002
- --INI--
- opcache.enable=1
- opcache.enable_cli=1
- opcache.optimization_level=-1
- --EXTENSIONS--
- opcache
- --FILE--
- <?php
- function func($blogname, $user = '' ) {
- if (! is_object( $user ) || ( is_object($user) && ( $user->login != $blogname )) ) {
- test();
- }
- $result = array('user' => $user);
- return true;
- }
- ?>
- okey
- --EXPECT--
- okey
|