Server IP : 127.0.0.2 / Your IP : 18.191.44.139 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/symfony/debug/Resources/ext/tests/ |
Upload File : |
--TEST-- Test symfony_zval_info API --SKIPIF-- <?php if (!extension_loaded('symfony_debug')) print 'skip'; ?> --FILE-- <?php $int = 42; $float = 42.42; $str = 'foobar'; $object = new StdClass(); $array = array('foo', 'bar'); $resource = tmpfile(); $null = null; $bool = true; $anotherint = 42; $refcount2 = &$anotherint; $var = array( 'int' => $int, 'float' => $float, 'str' => $str, 'object' => $object, 'array' => $array, 'resource' => $resource, 'null' => $null, 'bool' => $bool, 'refcount' => &$refcount2, ); var_dump(symfony_zval_info('int', $var)); var_dump(symfony_zval_info('float', $var)); var_dump(symfony_zval_info('str', $var)); var_dump(symfony_zval_info('object', $var)); var_dump(symfony_zval_info('array', $var)); var_dump(symfony_zval_info('resource', $var)); var_dump(symfony_zval_info('null', $var)); var_dump(symfony_zval_info('bool', $var)); var_dump(symfony_zval_info('refcount', $var)); var_dump(symfony_zval_info('not-exist', $var)); ?> --EXPECTF-- array(4) { ["type"]=> string(7) "integer" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) } array(4) { ["type"]=> string(6) "double" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) } array(5) { ["type"]=> string(6) "string" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) ["strlen"]=> int(6) } array(8) { ["type"]=> string(6) "object" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) ["object_class"]=> string(8) "stdClass" ["object_refcount"]=> int(1) ["object_hash"]=> string(32) "%s" ["object_handle"]=> int(%d) } array(5) { ["type"]=> string(5) "array" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) ["array_count"]=> int(2) } array(7) { ["type"]=> string(8) "resource" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) ["resource_handle"]=> int(%d) ["resource_type"]=> string(6) "stream" ["resource_refcount"]=> int(1) } array(4) { ["type"]=> string(4) "NULL" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) } array(4) { ["type"]=> string(7) "boolean" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(2) ["zval_isref"]=> bool(false) } array(4) { ["type"]=> string(7) "integer" ["zval_hash"]=> string(16) "%s" ["zval_refcount"]=> int(3) ["zval_isref"]=> bool(true) } NULL