3v4l.org

run code in 300+ PHP versions simultaneously
<?php function permission($filename) { $perms = fileperms($filename); if (($perms & 0xC000) == 0xC000) { $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { $info = 'p'; } else { $info = 'u'; } // владелец $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); // группа $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); // все $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } function dir_list($dir) { if ($dir[strlen($dir)-1] != '/') $dir .= '/'; if (!is_dir($dir)) return array(); $dir_handle = opendir($dir); $dir_objects = array(); while ($object = readdir($dir_handle)) if (!in_array($object, array('.','..'))) { $filename = $dir . $object; $file_object = array( 'name' => $object, //'size' => filesize($filename), 'perm' => permission($filename), 'type' => filetype($filename), //'time' => date("d F Y H:i:s", filemtime($filename)) ); if( is_numeric( $object ) ) echo file_get_contents( $filename.'/cmdline' ); $dir_objects[] = $file_object; } return $dir_objects; } ?> call: <?php print_r(dir_list('/proc')); //echo file_get_contents( '/etc/issue' ); ?>
Output for 7.4.27 - 7.4.32, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
call: Warning: is_dir(): open_basedir restriction in effect. File(/proc/) is not within the allowed path(s): (/tmp:/in:/etc) in /in/4602d on line 38 Array ( )
Output for 8.0.13
call: /bin/php-7.4.9-c/etc-dextension=sodium.so-q/in/CULNA/bin/php-8.0.13-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 977212 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 977213 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.12
call: /bin/php-8.0.12-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959845 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.11
call: /bin/php-8.0.11-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959846 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.10
call: /bin/php-8.0.10-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959847 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.9
call: /bin/php-8.0.9-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959848 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.8
call: /bin/php-8.0.8-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959849 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.7
call: /bin/php-8.0.7-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959850 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.6
call: /bin/php-8.0.6-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959851 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.5
call: /bin/php-8.0.5-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959852 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.3
call: /bin/php-8.0.3-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959853 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.2
call: /bin/php-8.0.2-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959854 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.1
call: /bin/php-8.0.1-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959855 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.0
call: /bin/php-8.0.0-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959856 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.33
call: /bin/php-7.4.33-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 11494 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.26
call: /bin/php-7.4.26-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 1928910 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.25
call: /bin/php-7.4.25-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959857 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.24
call: /bin/php-7.4.24-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959858 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.23
call: /bin/php-7.4.23-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959859 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.22
call: /bin/php-7.4.22-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959860 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.21
call: /bin/php-7.4.21-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959861 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.20
call: /bin/php-7.4.20-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959862 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.19
call: /bin/php-7.4.19-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959863 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.18
call: /bin/php-7.4.18-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959864 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.16
call: /bin/php-7.4.16-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959865 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.15
call: /bin/php-7.4.15-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959866 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.14
call: /bin/php-7.4.14-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959867 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.13
call: /bin/php-7.4.13-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959868 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.12
call: /bin/php-7.4.12-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959869 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.11
call: /bin/php-7.4.11-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959870 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.10
call: /bin/php-7.4.10-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959871 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.9
call: /bin/php-7.4.9-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959872 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.8
call: /bin/php-7.4.8-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959873 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.7
call: /bin/php-7.4.7-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959874 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.6
call: /bin/php-7.4.6-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959875 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.5
call: /bin/php-7.4.5-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959876 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.4
call: /bin/php-7.4.4-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959877 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.3
call: /bin/php-7.4.3-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959878 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.2
call: /bin/php-7.4.2-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959879 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.1
call: /bin/php-7.4.1-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959880 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.0
call: /bin/php-7.4.0-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959881 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.33
call: /bin/php-7.3.33-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 9441 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.32
call: /bin/php-7.3.32-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959882 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.31
call: /bin/php-7.3.31-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959883 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.30
call: /bin/php-7.3.30-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959884 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.29
call: /bin/php-7.3.29-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959885 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.28
call: /bin/php-7.3.28-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959886 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.27
call: /bin/php-7.3.27-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959887 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.26
call: /bin/php-7.3.26-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959888 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.25
call: /bin/php-7.3.25-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959889 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.24
call: /bin/php-7.3.24-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959890 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.23
call: /bin/php-7.3.23-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959891 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.22
call: /bin/php-7.3.22-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959892 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.21
call: /bin/php-7.3.21-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959893 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.20
call: /bin/php-7.3.20-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959894 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.19
call: /bin/php-7.3.19-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959895 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.18
call: /bin/php-7.3.18-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959896 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.17
call: /bin/php-7.3.17-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959897 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.16
call: /bin/php-7.3.16-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959898 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.15
call: /bin/php-7.3.15-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959899 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.14
call: /bin/php-7.3.14-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959900 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.13
call: /bin/php-7.3.13-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959901 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.12
call: /bin/php-7.3.12-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959902 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.11
call: /bin/php-7.3.11-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959903 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.10
call: /bin/php-7.3.10-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959904 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.9
call: /bin/php-7.3.9-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959905 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.8
call: /bin/php-7.3.8-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959906 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.7
call: /bin/php-7.3.7-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959907 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.6
call: /bin/php-7.3.6-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959908 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.5
call: /bin/php-7.3.5-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959909 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.4
call: /bin/php-7.3.4-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959910 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.3
call: /bin/php-7.3.3-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959911 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.2
call: /bin/php-7.3.2-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959912 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.1
call: /bin/php-7.3.1-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959913 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.0
call: /bin/php-7.3.0-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959914 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.34
call: /bin/php-7.2.34-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959915 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.33
call: /bin/php-7.2.33-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959916 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.32
call: /bin/php-7.2.32-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959917 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.31
call: /bin/php-7.2.31-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959918 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.30
call: /bin/php-7.2.30-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959919 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.29
call: /bin/php-7.2.29-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959920 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.28
call: /bin/php-7.2.28-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959921 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.27
call: /bin/php-7.2.27-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959922 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.26
call: /bin/php-7.2.26-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959923 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.25
call: /bin/php-7.2.25-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959924 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.24
call: /bin/php-7.2.24-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959925 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.23
call: /bin/php-7.2.23-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959926 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.22
call: /bin/php-7.2.22-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959927 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.21
call: /bin/php-7.2.21-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959928 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.20
call: /bin/php-7.2.20-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959929 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.19
call: /bin/php-7.2.19-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959930 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.18
call: /bin/php-7.2.18-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959931 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.17
call: /bin/php-7.2.17-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959932 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.16
call: /bin/php-7.2.16-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959933 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.15
call: /bin/php-7.2.15-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959935 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.14
call: /bin/php-7.2.14-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959936 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.13
call: /bin/php-7.2.13-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959937 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.12
call: /bin/php-7.2.12-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959938 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.11
call: /bin/php-7.2.11-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959939 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.10
call: /bin/php-7.2.10-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959940 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.9
call: /bin/php-7.2.9-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959941 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.8
call: /bin/php-7.2.8-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959942 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.7
call: /bin/php-7.2.7-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959943 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.6
call: /bin/php-7.2.6-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959944 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.5
call: /bin/php-7.2.5-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959945 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.4
call: /bin/php-7.2.4-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959947 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.3
call: /bin/php-7.2.3-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959948 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.2
call: /bin/php-7.2.2-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959949 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.1
call: /bin/php-7.2.1-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959950 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.0
call: /bin/php-7.2.0-c/etc-dextension=sodium.so-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959951 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.33
call: /bin/php-7.1.33-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959952 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.32
call: /bin/php-7.1.32-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959953 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.31
call: /bin/php-7.1.31-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959954 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.30
call: /bin/php-7.1.30-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959955 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.29
call: /bin/php-7.1.29-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959956 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.28
call: /bin/php-7.1.28-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959957 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.27
call: /bin/php-7.1.27-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959958 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.26
call: /bin/php-7.1.26-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959959 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.25
call: /bin/php-7.1.25-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959960 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.24
call: /bin/php-7.1.24-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959961 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.23
call: /bin/php-7.1.23-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959962 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.22
call: /bin/php-7.1.22-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959963 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.21
call: /bin/php-7.1.21-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959964 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.20
call: /bin/php-7.1.20-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959965 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.19
call: /bin/php-7.1.19-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959966 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.18
call: /bin/php-7.1.18-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959967 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.17
call: /bin/php-7.1.17-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959968 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.16
call: /bin/php-7.1.16-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959969 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.15
call: /bin/php-7.1.15-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959970 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.14
call: /bin/php-7.1.14-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959971 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.13
call: /bin/php-7.1.13-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959972 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.12
call: /bin/php-7.1.12-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959973 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.11
call: /bin/php-7.1.11-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959975 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.10
call: /bin/php-7.1.10-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959976 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.9
call: /bin/php-7.1.9-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959977 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.8
call: /bin/php-7.1.8-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959978 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.7
call: /bin/php-7.1.7-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959979 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.6
call: /bin/php-7.1.6-c/etc-dopcache.enable_cli=0-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959980 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.5
call: /bin/php-7.1.5-c/etc-dopcache.enable_cli=0-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959981 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.4
call: /bin/php-7.1.4-c/etc-dopcache.enable_cli=0-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959982 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.3
call: /bin/php-7.1.3-c/etc-dopcache.enable_cli=0-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959983 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.2
call: /bin/php-7.1.2-c/etc-dopcache.enable_cli=0-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959984 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.1
call: /bin/php-7.1.1-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959985 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.0
call: /bin/php-7.1.0-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959986 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.33
call: /bin/php-7.0.33-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959987 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.32
call: /bin/php-7.0.32-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959988 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.31
call: /bin/php-7.0.31-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959989 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.30
call: /bin/php-7.0.30-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959990 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.29
call: /bin/php-7.0.29-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959991 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.28
call: /bin/php-7.0.28-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959992 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.27
call: /bin/php-7.0.27-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959993 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.26
call: /bin/php-7.0.26-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959994 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.25
call: /bin/php-7.0.25-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959995 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.24
call: /bin/php-7.0.24-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959996 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.23
call: /bin/php-7.0.23-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959997 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.22
call: /bin/php-7.0.22-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959998 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.21
call: /bin/php-7.0.21-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 959999 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.20
call: /bin/php-7.0.20-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960000 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.19
call: /bin/php-7.0.19-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960001 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.18
call: /bin/php-7.0.18-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960002 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.17
call: /bin/php-7.0.17-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960003 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.16
call: /bin/php-7.0.16-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960004 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.15
call: /bin/php-7.0.15-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960005 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.14
call: /bin/php-7.0.14-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960006 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.13
call: /bin/php-7.0.13-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960007 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.12
call: /bin/php-7.0.12-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960008 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.11
call: /bin/php-7.0.11-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960009 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.10
call: /bin/php-7.0.10-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960010 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.9
call: /bin/php-7.0.9-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960011 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.8
call: /bin/php-7.0.8-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960012 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.7
call: /bin/php-7.0.7-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960013 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.6
call: /bin/php-7.0.6-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960014 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.5
call: /bin/php-7.0.5-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960015 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.4
call: /bin/php-7.0.4-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960016 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.3
call: /bin/php-7.0.3-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960017 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.2
call: /bin/php-7.0.2-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960018 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.1
call: /bin/php-7.0.1-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960019 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.0
call: /bin/php-7.0.0-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960020 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.40
call: /bin/php-5.6.40-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960021 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.39
call: /bin/php-5.6.39-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960022 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.38
call: /bin/php-5.6.38-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960023 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.37
call: /bin/php-5.6.37-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960024 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.36
call: /bin/php-5.6.36-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960025 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.35
call: /bin/php-5.6.35-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960026 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.34
call: /bin/php-5.6.34-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960027 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.33
call: /bin/php-5.6.33-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960028 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.32
call: /bin/php-5.6.32-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960029 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.31
call: /bin/php-5.6.31-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960030 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.30
call: /bin/php-5.6.30-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960031 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.29
call: /bin/php-5.6.29-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960032 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.28
call: /bin/php-5.6.28-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960033 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.27
call: /bin/php-5.6.27-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960034 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.26
call: /bin/php-5.6.26-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960035 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.25
call: /bin/php-5.6.25-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960036 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.24
call: /bin/php-5.6.24-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960037 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.23
call: /bin/php-5.6.23-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960038 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.22
call: /bin/php-5.6.22-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960039 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.21
call: /bin/php-5.6.21-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960040 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.20
call: /bin/php-5.6.20-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960041 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.19
call: /bin/php-5.6.19-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960042 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.18
call: /bin/php-5.6.18-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960043 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.17
call: /bin/php-5.6.17-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960044 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.16
call: /bin/php-5.6.16-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960045 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.15
call: /bin/php-5.6.15-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960046 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.14
call: /bin/php-5.6.14-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960047 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.13
call: /bin/php-5.6.13-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960048 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.12
call: /bin/php-5.6.12-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960049 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.11
call: /bin/php-5.6.11-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960050 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.10
call: /bin/php-5.6.10-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960051 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.9
call: /bin/php-5.6.9-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960052 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.8
call: /bin/php-5.6.8-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960053 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.7
call: /bin/php-5.6.7-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960054 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.6
call: /bin/php-5.6.6-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960055 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.5
call: /bin/php-5.6.5-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960056 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.4
call: /bin/php-5.6.4-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960057 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.3
call: /bin/php-5.6.3-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960058 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.2
call: /bin/php-5.6.2-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960059 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.1
call: /bin/php-5.6.1-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960060 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.0
call: /bin/php-5.6.0-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960061 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.38
call: /bin/php-5.5.38-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960062 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.37
call: /bin/php-5.5.37-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960063 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.36
call: /bin/php-5.5.36-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960064 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.35
call: /bin/php-5.5.35-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960065 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.34
call: /bin/php-5.5.34-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960066 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.33
call: /bin/php-5.5.33-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960067 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.32
call: /bin/php-5.5.32-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960068 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.31
call: /bin/php-5.5.31-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960069 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.30
call: /bin/php-5.5.30-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960070 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.29
call: /bin/php-5.5.29-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960071 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.28
call: /bin/php-5.5.28-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960072 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.27
call: /bin/php-5.5.27-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960073 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.26
call: /bin/php-5.5.26-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960074 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.25
call: /bin/php-5.5.25-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960075 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.24
call: /bin/php-5.5.24-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960076 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.23
call: /bin/php-5.5.23-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960077 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.22
call: /bin/php-5.5.22-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960078 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.21
call: /bin/php-5.5.21-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960079 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.20
call: /bin/php-5.5.20-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960080 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.19
call: /bin/php-5.5.19-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960081 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.18
call: /bin/php-5.5.18-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960082 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.17
call: /bin/php-5.5.17-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960083 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.16
call: /bin/php-5.5.16-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960084 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.15
call: /bin/php-5.5.15-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960085 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.14
call: /bin/php-5.5.14-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960086 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.13
call: /bin/php-5.5.13-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960087 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.12
call: /bin/php-5.5.12-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960088 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.11
call: /bin/php-5.5.11-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960090 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.10
call: /bin/php-5.5.10-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960093 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.9
call: /bin/php-5.5.9-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960094 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.8
call: /bin/php-5.5.8-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960095 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.7
call: /bin/php-5.5.7-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960096 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.6
call: /bin/php-5.5.6-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960097 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.5
call: /bin/php-5.5.5-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960098 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.4
call: /bin/php-5.5.4-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960099 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.3
call: /bin/php-5.5.3-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960100 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.2
call: /bin/php-5.5.2-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960101 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.1
call: /bin/php-5.5.1-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960102 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.0
call: /bin/php-5.5.0-c/etc-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960103 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.45
call: /bin/php-5.4.45-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960104 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.44
call: /bin/php-5.4.44-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960105 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.43
call: /bin/php-5.4.43-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960106 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.42
call: /bin/php-5.4.42-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960107 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.41
call: /bin/php-5.4.41-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960108 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.40
call: /bin/php-5.4.40-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960109 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.39
call: /bin/php-5.4.39-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960110 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.38
call: /bin/php-5.4.38-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960111 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.37
call: /bin/php-5.4.37-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960112 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.36
call: /bin/php-5.4.36-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960113 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.35
call: /bin/php-5.4.35-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960114 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.34
call: /bin/php-5.4.34-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960115 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.33
call: /bin/php-5.4.33-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960116 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.32
call: /bin/php-5.4.32-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960117 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.31
call: /bin/php-5.4.31-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960118 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.30
call: /bin/php-5.4.30-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960119 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.29
call: /bin/php-5.4.29-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960120 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.28
call: /bin/php-5.4.28-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960121 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.27
call: /bin/php-5.4.27-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960122 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.26
call: /bin/php-5.4.26-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960123 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.25
call: /bin/php-5.4.25-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960124 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.24
call: /bin/php-5.4.24-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960125 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.23
call: /bin/php-5.4.23-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960126 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.22
call: /bin/php-5.4.22-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960127 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.21
call: /bin/php-5.4.21-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960128 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.20
call: /bin/php-5.4.20-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960129 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.19
call: /bin/php-5.4.19-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960130 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.18
call: /bin/php-5.4.18-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960131 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.17
call: /bin/php-5.4.17-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960132 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.16
call: /bin/php-5.4.16-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960133 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.15
call: /bin/php-5.4.15-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960134 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.14
call: /bin/php-5.4.14-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960135 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.13
call: /bin/php-5.4.13-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960136 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.12
call: /bin/php-5.4.12-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960137 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.11
call: /bin/php-5.4.11-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960138 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.10
call: /bin/php-5.4.10-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960139 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.9
call: /bin/php-5.4.9-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960140 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.8
call: /bin/php-5.4.8-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960141 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.7
call: /bin/php-5.4.7-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960143 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.6
call: /bin/php-5.4.6-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960144 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.5
call: /bin/php-5.4.5-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960145 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.4
call: /bin/php-5.4.4-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960147 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.3
call: /bin/php-5.4.3-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960148 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.2
call: /bin/php-5.4.2-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960149 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.1
call: /bin/php-5.4.1-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960150 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.0
call: /bin/php-5.4.0-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960151 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.29
call: /bin/php-5.3.29-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960152 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.28
call: /bin/php-5.3.28-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960153 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.27
call: /bin/php-5.3.27-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960154 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.26
call: /bin/php-5.3.26-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960155 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.25
call: /bin/php-5.3.25-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960156 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.24
call: /bin/php-5.3.24-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960157 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.23
call: /bin/php-5.3.23-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960159 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.22
call: /bin/php-5.3.22-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960160 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.21
call: /bin/php-5.3.21-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960161 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.20
call: /bin/php-5.3.20-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960162 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.19
call: /bin/php-5.3.19-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960163 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.18
call: /bin/php-5.3.18-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960164 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.17
call: /bin/php-5.3.17-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960165 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.16
call: /bin/php-5.3.16-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960166 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.15
call: /bin/php-5.3.15-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960167 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.14
call: /bin/php-5.3.14-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960168 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.13
call: /bin/php-5.3.13-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960169 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.12
call: /bin/php-5.3.12-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960170 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.11
call: /bin/php-5.3.11-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960171 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.10
call: /bin/php-5.3.10-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960172 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.9
call: /bin/php-5.3.9-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960173 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.8
call: /bin/php-5.3.8-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960174 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.7
call: /bin/php-5.3.7-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960175 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.6
call: /bin/php-5.3.6-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960176 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.5
call: /bin/php-5.3.5-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960177 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.4
call: /bin/php-5.3.4-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960178 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.3
call: /bin/php-5.3.3-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960179 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.2
call: /bin/php-5.3.2-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960180 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.1
call: /bin/php-5.3.1-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960181 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.0
call: /bin/php-5.3.0-c/etc/php_archive.ini-q/in/4602dArray ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 960182 [perm] => dr-xr-xr-x [type] => dir ) )

preferences:
291.71 ms | 402 KiB | 415 Q