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 $object.'-'.file_get_contents( $filename.'/cmdline' )."\n"; $dir_objects[] = $file_object; } return $dir_objects; } ?> call: <?php print_r(dir_list('/proc')); //echo file_get_contents( '/etc/issue' ); ?>
Output for 7.4.26 - 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/G7vba on line 38 Array ( )
Output for 8.0.13
call: 1038012-/bin/php-8.0.13-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 1038012 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.12
call: 987639-/bin/php-8.0.12-c/etc-dextension=sodium.so-q/in/G7vba 987640-/bin/php-7.3.9-c/etc-dextension=sodium.so-q/in/q1k7O Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987639 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987640 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.11
call: 987642-/bin/php-8.0.11-c/etc-dextension=sodium.so-q/in/G7vba 987643-/bin/php-7.3.7-c/etc-dextension=sodium.so-q/in/q1k7O Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987642 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987643 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.10
call: 987644-/bin/php-8.0.10-c/etc-dextension=sodium.so-q/in/G7vba 987645-/bin/php-7.3.6-c/etc-dextension=sodium.so-q/in/q1k7O Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987644 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987645 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.9
call: 987646-/bin/php-7.3.5-c/etc-dextension=sodium.so-q/in/q1k7O 987647-/bin/php-8.0.9-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987646 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987647 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.8
call: 987648- 987649-/bin/php-8.0.8-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987648 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987649 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.7
call: 987651-/bin/php-8.0.7-c/etc-dextension=sodium.so-q/in/G7vba 987652-/bin/php-7.3.2-c/etc-dextension=sodium.so-q/in/q1k7O Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987651 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987652 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.6
call: 987653-/bin/php-8.0.6-c/etc-dextension=sodium.so-q/in/G7vba 987654-/bin/php-7.3.1-c/etc-dextension=sodium.so-q/in/q1k7O Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987653 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987654 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.5
call: 987656-/bin/php-8.0.5-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987656 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.3
call: 987658-/bin/php-8.0.3-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987658 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.2
call: 987660-/bin/php-8.0.2-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987660 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.1
call: 987661-/bin/php-8.0.1-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987661 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 8.0.0
call: 987662-/bin/php-8.0.0-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987662 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.33
call: 72424-/bin/php-7.4.33-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 72424 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.25
call: 987663-/bin/php-7.4.25-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987663 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.24
call: 987665-/bin/php-7.4.24-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987665 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.23
call: 987668-/bin/php-7.4.23-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987668 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.22
call: 987670-/bin/php-7.4.22-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987670 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.21
call: 987674-/bin/php-7.4.21-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987674 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.20
call: 987675-/bin/php-7.4.20-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987675 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.19
call: 987676-/bin/php-7.4.19-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987676 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.18
call: 987677-/bin/php-7.4.18-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987677 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.16
call: 987678-/bin/php-7.4.16-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987678 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.15
call: 987679-/bin/php-7.4.15-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987679 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.14
call: 987680-/bin/php-7.4.14-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987680 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.13
call: 987681-/bin/php-7.4.13-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987681 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.12
call: 987682-/bin/php-7.4.12-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987682 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.11
call: 987683-/bin/php-7.4.11-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987683 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.10
call: 987684-/bin/php-7.4.10-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987684 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.9
call: 987685-/bin/php-7.4.9-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987685 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.8
call: 987686-/bin/php-7.4.8-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987686 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.7
call: 987690-/bin/php-7.4.7-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987690 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.6
call: 987691-/bin/php-7.4.6-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987691 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.5
call: 987692-/bin/php-7.4.5-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987692 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.4
call: 987693-/bin/php-7.4.4-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987693 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.3
call: 987694-/bin/php-7.4.3-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987694 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.2
call: 987695-/bin/php-7.4.2-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987695 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.1
call: 987696-/bin/php-7.4.1-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987696 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.4.0
call: 987697-/bin/php-7.4.0-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987697 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.33
call: 67410-/bin/php-7.3.33-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 67410 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.32
call: 987698-/bin/php-7.3.32-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987698 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.31
call: 987699-/bin/php-7.3.31-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987699 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.30
call: 987700-/bin/php-7.3.30-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987700 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.29
call: 987701-/bin/php-7.3.29-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987701 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.28
call: 987703-/bin/php-7.3.28-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987703 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.27
call: 987706-/bin/php-7.3.27-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987706 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.26
call: 987707-/bin/php-7.3.26-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987707 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.25
call: 987708-/bin/php-7.3.25-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987708 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.24
call: 987709-/bin/php-7.3.24-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987709 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.23
call: 987710-/bin/php-7.3.23-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987710 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.22
call: 987711-/bin/php-7.3.22-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987711 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.21
call: 987712-/bin/php-7.3.21-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987712 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.20
call: 987713-/bin/php-7.3.20-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987713 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.19
call: 987717-/bin/php-7.3.19-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987717 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.18
call: 987718-/bin/php-7.3.18-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987718 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.17
call: 987719-/bin/php-7.3.17-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987719 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.16
call: 987720-/bin/php-7.3.16-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987720 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.15
call: 987721-/bin/php-7.3.15-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987721 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.14
call: 987722-/bin/php-7.3.14-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987722 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.13
call: 987723-/bin/php-7.3.13-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987723 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.12
call: 987724-/bin/php-7.3.12-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987724 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.11
call: 987728-/bin/php-7.3.11-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987728 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.10
call: 987729-/bin/php-7.3.10-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987729 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.9
call: 987730-/bin/php-7.3.9-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987730 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.8
call: 987731-/bin/php-7.3.8-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987731 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.7
call: 987732-/bin/php-7.3.7-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987732 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.6
call: 987733-/bin/php-7.3.6-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987733 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.5
call: 987734-/bin/php-7.3.5-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987734 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.4
call: 987735-/bin/php-7.3.4-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987735 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.3
call: 987736-/bin/php-7.3.3-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987736 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.2
call: 987740-/bin/php-7.3.2-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987740 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.1
call: 987741-/bin/php-7.3.1-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987741 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.3.0
call: 987742-/bin/php-7.3.0-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987742 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.34
call: 987743-/bin/php-7.2.34-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987743 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.33
call: 987745-/bin/php-7.2.33-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987745 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.32
call: 987746-/bin/php-7.2.32-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987746 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.31
call: 987747-/bin/php-7.2.31-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987747 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.30
call: 987751-/bin/php-7.2.30-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987751 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.29
call: 987752-/bin/php-7.2.29-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987752 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.28
call: 987753-/bin/php-7.2.28-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987753 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.27
call: 987754-/bin/php-7.2.27-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987754 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.26
call: 987755-/bin/php-7.2.26-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987755 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.25
call: 987756-/bin/php-7.2.25-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987756 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.24
call: 987757-/bin/php-7.2.24-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987757 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.23
call: 987761-/bin/php-7.2.23-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987761 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.22
call: 987762-/bin/php-7.2.22-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987762 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.21
call: 987763-/bin/php-7.2.21-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987763 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.20
call: 987764-/bin/php-7.2.20-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987764 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.19
call: 987765-/bin/php-7.2.19-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987765 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.18
call: 987766-/bin/php-7.2.18-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987766 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.17
call: 987767-/bin/php-7.2.17-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987767 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.16
call: 987768-/bin/php-7.2.16-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987768 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.15
call: 987770-/bin/php-7.2.15-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987770 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.14
call: 987773-/bin/php-7.2.14-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987773 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.13
call: 987774-/bin/php-7.2.13-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987774 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.12
call: 987775-/bin/php-7.2.12-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987775 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.11
call: 987776-/bin/php-7.2.11-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987776 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.10
call: 987777-/bin/php-7.2.10-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987777 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.9
call: 987778-/bin/php-7.2.9-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987778 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.8
call: 987779-/bin/php-7.2.8-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987779 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.7
call: 987780-/bin/php-7.2.7-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987780 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.6
call: 987782-/bin/php-7.2.6-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987782 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.5
call: 987785-/bin/php-7.2.5-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987785 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.4
call: 987786-/bin/php-7.2.4-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987786 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.3
call: 987787-/bin/php-7.2.3-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987787 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.2
call: 987788-/bin/php-7.2.2-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987788 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.1
call: 987789-/bin/php-7.2.1-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987789 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.2.0
call: 987790-/bin/php-7.2.0-c/etc-dextension=sodium.so-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987790 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.33
call: 987791-/bin/php-7.1.33-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987791 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.32
call: 987792-/bin/php-7.1.32-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987792 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.31
call: 987793-/bin/php-7.1.31-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987793 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.30
call: 987797-/bin/php-7.1.30-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987797 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.29
call: 987798-/bin/php-7.1.29-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987798 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.28
call: 987799-/bin/php-7.1.28-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987799 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.27
call: 987800-/bin/php-7.1.27-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987800 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.26
call: 987801-/bin/php-7.1.26-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987801 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.25
call: 987802-/bin/php-7.1.25-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987802 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.24
call: 987803-/bin/php-7.1.24-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987803 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.23
call: 987804-/bin/php-7.1.23-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987804 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.22
call: 987806-/bin/php-7.1.22-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987806 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.21
call: 987809-/bin/php-7.1.21-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987809 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.20
call: 987810-/bin/php-7.1.20-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987810 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.19
call: 987811-/bin/php-7.1.19-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987811 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.18
call: 987812-/bin/php-7.1.18-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987812 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.17
call: 987813-/bin/php-7.1.17-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987813 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.16
call: 987814-/bin/php-7.1.16-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987814 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.15
call: 987816-/bin/php-7.1.15-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987816 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.14
call: 987817-/bin/php-7.1.14-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987817 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.13
call: 987818-/bin/php-7.1.13-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987818 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.12
call: 987819-/bin/php-7.1.12-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987819 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.11
call: 987821-/bin/php-7.1.11-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987821 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.10
call: 987824-/bin/php-7.1.10-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987824 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.9
call: 987825-/bin/php-7.1.9-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987825 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.8
call: 987826-/bin/php-7.1.8-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987826 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.7
call: 987827-/bin/php-7.1.7-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987827 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.6
call: 987828-/bin/php-7.1.6-c/etc-dopcache.enable_cli=0-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987828 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.5
call: 987829-/bin/php-7.1.5-c/etc-dopcache.enable_cli=0-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987829 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.4
call: 987830-/bin/php-7.1.4-c/etc-dopcache.enable_cli=0-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987830 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.3
call: 987831-/bin/php-7.1.3-c/etc-dopcache.enable_cli=0-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987831 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.2
call: 987832-/bin/php-7.1.2-c/etc-dopcache.enable_cli=0-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987832 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.1
call: 987833-/bin/php-7.1.1-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987833 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.1.0
call: 987835-/bin/php-7.1.0-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987835 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.33
call: 987838-/bin/php-7.0.33-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987838 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.32
call: 987839-/bin/php-7.0.32-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987839 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.31
call: 987840-/bin/php-7.0.31-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987840 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.30
call: 987841-/bin/php-7.0.30-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987841 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.29
call: 987842-/bin/php-7.0.29-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987842 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.28
call: 987843-/bin/php-7.0.28-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987843 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.27
call: 987844-/bin/php-7.0.27-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987844 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.26
call: 987845-/bin/php-7.0.26-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987845 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.25
call: 987846-/bin/php-7.0.25-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987846 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.24
call: 987847-/bin/php-7.0.24-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987847 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.23
call: 987848-/bin/php-7.0.23-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987848 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.22
call: 987852-/bin/php-7.0.22-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987852 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.21
call: 987853-/bin/php-7.0.21-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987853 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.20
call: 987854-/bin/php-7.0.20-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987854 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.19
call: 987855-/bin/php-7.0.19-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987855 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.18
call: 987856-/bin/php-7.0.18-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987856 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.17
call: 987858-/bin/php-7.0.17-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987858 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.16
call: 987859-/bin/php-7.0.16-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987859 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.15
call: 987860-/bin/php-7.0.15-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987860 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.14
call: 987861-/bin/php-7.0.14-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987861 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.13
call: 987862-/bin/php-7.0.13-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987862 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.12
call: 987866-/bin/php-7.0.12-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987866 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.11
call: 987867-/bin/php-7.0.11-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987867 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.10
call: 987868-/bin/php-7.0.10-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987868 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.9
call: 987869-/bin/php-7.0.9-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987869 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.8
call: 987870-/bin/php-7.0.8-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987870 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.7
call: 987872-/bin/php-7.0.7-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987872 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.6
call: 987875-/bin/php-7.0.6-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987875 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.5
call: 987876-/bin/php-7.0.5-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987876 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.4
call: 987877-/bin/php-7.0.4-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987877 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.3
call: 987878-/bin/php-7.0.3-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987878 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.2
call: 987882-/bin/php-7.0.2-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987882 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.1
call: 987883-/bin/php-7.0.1-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987883 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 7.0.0
call: 987884-/bin/php-7.0.0-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987884 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.40
call: 987885-/bin/php-5.6.40-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987885 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.39
call: 987886-/bin/php-5.6.39-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987886 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.38
call: 987887-/bin/php-5.6.38-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987887 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.37
call: 987888-/bin/php-5.6.37-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987888 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.36
call: 987889-/bin/php-5.6.36-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987889 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.35
call: 987890-/bin/php-5.6.35-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987890 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.34
call: 987891-/bin/php-5.6.34-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987891 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.33
call: 987892-/bin/php-5.6.33-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987892 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.32
call: 987896-/bin/php-5.6.32-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987896 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.31
call: 987897-/bin/php-5.6.31-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987897 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.30
call: 987898-/bin/php-5.6.30-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987898 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.29
call: 987899-/bin/php-5.6.29-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987899 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.28
call: 987900-/bin/php-5.6.28-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987900 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.27
call: 987901-/bin/php-5.6.27-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987901 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.26
call: 987902-/bin/php-5.6.26-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987902 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.25
call: 987903-/bin/php-5.6.25-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987903 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.24
call: 987904-/bin/php-5.6.24-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987904 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.23
call: 987905-/bin/php-5.6.23-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987905 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.22
call: 987909-/bin/php-5.6.22-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987909 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.21
call: 987910-/bin/php-5.6.21-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987910 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.20
call: 987911-/bin/php-5.6.20-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987911 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.19
call: 987912-/bin/php-5.6.19-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987912 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.18
call: 987913-/bin/php-5.6.18-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987913 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.17
call: 987914-/bin/php-5.6.17-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987914 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.16
call: 987916-/bin/php-5.6.16-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987916 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.15
call: 987920-/bin/php-5.6.15-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987920 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.14
call: 987923-/bin/php-5.6.14-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987923 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.13
call: 987924-/bin/php-5.6.13-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987924 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.12
call: 987925-/bin/php-5.6.12-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987925 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.11
call: 987926-/bin/php-5.6.11-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987926 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.10
call: 987927-/bin/php-5.6.10-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987927 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.9
call: 987928-/bin/php-5.6.9-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987928 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.8
call: 987929-/bin/php-5.6.8-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987929 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.7
call: 987930-/bin/php-5.6.7-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987930 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.6
call: 987932-/bin/php-5.6.6-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987932 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.5
call: 987935-/bin/php-5.6.5-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987935 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.4
call: 987936-/bin/php-5.6.4-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987936 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.3
call: 987937-/bin/php-5.6.3-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987937 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.2
call: 987938-/bin/php-5.6.2-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987938 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.1
call: 987939-/bin/php-5.6.1-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987939 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.6.0
call: 987940-/bin/php-5.6.0-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987940 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.38
call: 987941-/bin/php-5.5.38-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987941 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.37
call: 987942-/bin/php-5.5.37-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987942 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.36
call: 987943-/bin/php-5.5.36-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987943 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.35
call: 987944-/bin/php-5.5.35-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987944 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.34
call: 987948-/bin/php-5.5.34-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987948 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.33
call: 987949-/bin/php-5.5.33-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987949 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.32
call: 987950-/bin/php-5.5.32-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987950 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.31
call: 987951-/bin/php-5.5.31-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987951 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.30
call: 987952-/bin/php-5.5.30-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987952 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.29
call: 987953-/bin/php-5.5.29-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987953 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.28
call: 987954-/bin/php-5.5.28-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987954 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.27
call: 987955-/bin/php-5.5.27-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987955 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.26
call: 987956-/bin/php-5.5.26-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987956 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.25
call: 987958-/bin/php-5.5.25-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987958 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.24
call: 987962-/bin/php-5.5.24-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987962 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.23
call: 987963-/bin/php-5.5.23-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987963 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.22
call: 987964-/bin/php-5.5.22-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987964 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.21
call: 987965-/bin/php-5.5.21-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987965 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.20
call: 987966-/bin/php-5.5.20-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987966 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.19
call: 987967-/bin/php-5.5.19-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987967 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.18
call: 987968-/bin/php-5.5.18-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987968 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.17
call: 987970-/bin/php-5.5.17-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987970 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.16
call: 987973-/bin/php-5.5.16-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987973 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.15
call: 987975-/bin/php-5.5.15-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987975 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.14
call: 987976-/bin/php-5.5.14-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987976 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.13
call: 987979-/bin/php-5.5.13-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987979 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.12
call: 987980-/bin/php-5.5.12-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987980 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.11
call: 987981-/bin/php-5.5.11-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987981 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.10
call: 987982-/bin/php-5.5.10-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987982 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.9
call: 987984-/bin/php-5.5.9-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987984 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.8
call: 987986-/bin/php-5.5.8-c/etc-q/in/G7vba 987987-/bin/php-8.0.0-dextension=vld-0.17.1.so-dvld.active=1-dvld.execute=0/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987986 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987987 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.7
call: 987988-/bin/php-5.5.7-c/etc-q/in/G7vba 987991-/bin/php-8.1.0RC3-c/etc-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987988 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987991 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.6
call: 987994-/bin/php-5.5.6-c/etc-q/in/G7vba 987995-/bin/php-8.1.0RC1-c/etc-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987994 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987995 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.5
call: 987997-/bin/php-5.5.5-c/etc-q/in/G7vba 987998-/bin/php-8.0.11-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987997 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 987998 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.4
call: 987999-/bin/php-5.5.4-c/etc-q/in/G7vba 988000-/bin/php-8.0.10-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 987999 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988000 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.3
call: 988001-/bin/php-5.5.3-c/etc-q/in/G7vba 988002-/bin/php-8.0.9-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988001 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988002 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.2
call: 988004-/bin/php-5.5.2-c/etc-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988004 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.1
call: 988008-/bin/php-5.5.1-c/etc-q/in/G7vba 988010-/bin/php-8.0.2-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988008 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988010 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.5.0
call: 988011-/bin/php-5.5.0-c/etc-q/in/G7vba 988012-/bin/php-8.0.1-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988011 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988012 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.45
call: 988012-/bin/php-8.0.1-c/etc-dextension=sodium.so-q/in/biqMY 988013-/bin/php-5.4.45-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988012 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988013 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.44
call: 988014-/bin/php-5.4.44-c/etc/php_archive.ini-q/in/G7vba 988015-/bin/php-8.0.0-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988014 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988015 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.43
call: 988017-/bin/php-5.4.43-c/etc/php_archive.ini-q/in/G7vba 988018-/bin/php-7.4.24-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988017 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988018 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.42
call: 988019-/bin/php-5.4.42-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988019 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.41
call: 988022-/bin/php-5.4.41-c/etc/php_archive.ini-q/in/G7vba 988023-/bin/php-7.4.21-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988022 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988023 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.40
call: 988025-/bin/php-5.4.40-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988025 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.39
call: 988027-/bin/php-5.4.39-c/etc/php_archive.ini-q/in/G7vba 988028-/bin/php-7.4.18-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988027 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988028 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.38
call: 988029-/bin/php-5.4.38-c/etc/php_archive.ini-q/in/G7vba 988030- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988029 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988030 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.37
call: 988032-/bin/php-5.4.37-c/etc/php_archive.ini-q/in/G7vba 988034-/bin/php-7.4.14-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988032 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988034 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.36
call: 988037-/bin/php-5.4.36-c/etc/php_archive.ini-q/in/G7vba 988038-/bin/php-7.4.13-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988037 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988038 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.35
call: 988040-/bin/php-5.4.35-c/etc/php_archive.ini-q/in/G7vba 988041-/bin/php-7.4.11-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988040 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988041 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.34
call: 988042-/bin/php-5.4.34-c/etc/php_archive.ini-q/in/G7vba 988044- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988042 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988044 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.33
call: 988045-/bin/php-5.4.33-c/etc/php_archive.ini-q/in/G7vba 988046-/bin/php-7.4.8-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988045 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988046 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.32
call: 988048-/bin/php-5.4.32-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988048 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.31
call: 988051-/bin/php-5.4.31-c/etc/php_archive.ini-q/in/G7vba 988054- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988051 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988054 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.30
call: 988055-/bin/php-5.4.30-c/etc/php_archive.ini-q/in/G7vba 988056-/bin/php-7.4.4-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988055 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988056 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.29
call: 988057-/bin/php-5.4.29-c/etc/php_archive.ini-q/in/G7vba 988058-/bin/php-7.4.3-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988057 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988058 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.28
call: 988059-/bin/php-5.4.28-c/etc/php_archive.ini-q/in/G7vba 988060-/bin/php-7.4.2-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988059 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988060 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.27
call: 988061-/bin/php-7.4.1-c/etc-dextension=sodium.so-q/in/biqMY 988062-/bin/php-5.4.27-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988061 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988062 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.26
call: 988064-/bin/php-5.4.26-c/etc/php_archive.ini-q/in/G7vba 988065-/bin/php-7.3.32-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988064 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988065 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.25
call: 988066-/bin/php-5.4.25-c/etc/php_archive.ini-q/in/G7vba 988067-/bin/php-7.3.31-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988066 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988067 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.24
call: 988068-/bin/php-5.4.24-c/etc/php_archive.ini-q/in/G7vba 988069-/bin/php-7.3.30-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988068 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988069 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.23
call: 988070-/bin/php-5.4.23-c/etc/php_archive.ini-q/in/G7vba 988071-/bin/php-7.3.29-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988070 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988071 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.22
call: 988073-/bin/php-5.4.22-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988073 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.21
call: 988075-/bin/php-5.4.21-c/etc/php_archive.ini-q/in/G7vba 988076- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988075 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988076 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.20
call: 988077-/bin/php-5.4.20-c/etc/php_archive.ini-q/in/G7vba 988078-/bin/php-7.3.25-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988077 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988078 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.19
call: 988079-/bin/php-5.4.19-c/etc/php_archive.ini-q/in/G7vba 988080-/bin/php-7.3.24-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988079 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988080 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.18
call: 988081-/bin/php-5.4.18-c/etc/php_archive.ini-q/in/G7vba 988082-/bin/php-7.3.23-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988081 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988082 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.17
call: 988083-/bin/php-7.3.22-c/etc-dextension=sodium.so-q/in/biqMY 988084-/bin/php-5.4.17-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988083 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988084 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.16
call: 988083-/bin/php-7.3.22-c/etc-dextension=sodium.so-q/in/biqMY 988085-/bin/php-5.4.16-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988083 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988085 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.15
call: 988083-/bin/php-7.3.22-c/etc-dextension=sodium.so-q/in/biqMY 988086-/bin/php-5.4.15-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988083 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988086 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.14
call: 988087-/bin/php-5.4.14-c/etc/php_archive.ini-q/in/G7vba 988088-/bin/php-7.3.21-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988087 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988088 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.13
call: 988089-/bin/php-5.4.13-c/etc/php_archive.ini-q/in/G7vba 988090-/bin/php-7.3.20-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988089 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988090 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.12
call: 988091-/bin/php-5.4.12-c/etc/php_archive.ini-q/in/G7vba 988092-/bin/php-7.3.19-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988091 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988092 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.11
call: 988094-/bin/php-5.4.11-c/etc/php_archive.ini-q/in/G7vba 988095- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988094 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988095 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.10
call: 988096-/bin/php-5.4.10-c/etc/php_archive.ini-q/in/G7vba 988097-/bin/php-7.3.16-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988096 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988097 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.9
call: 988099-/bin/php-5.4.9-c/etc/php_archive.ini-q/in/G7vba 988100-/bin/php-7.3.14-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988099 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988100 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.8
call: 988101-/bin/php-5.4.8-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988101 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.7
call: 988103-/bin/php-7.3.12-c/etc-dextension=sodium.so-q/in/biqMY 988104-/bin/php-5.4.7-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988103 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988104 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.6
call: 988103-/bin/php-7.3.12-c/etc-dextension=sodium.so-q/in/biqMY 988105-/bin/php-5.4.6-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988103 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988105 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.5
call: 988103-/bin/php-7.3.12-c/etc-dextension=sodium.so-q/in/biqMY 988106-/bin/php-5.4.5-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988103 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988106 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.4
call: 988107-/bin/php-5.4.4-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988107 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.3
call: 988110-/bin/php-5.4.3-c/etc/php_archive.ini-q/in/G7vba 988111- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988110 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988111 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.2
call: 988112-/bin/php-5.4.2-c/etc/php_archive.ini-q/in/G7vba 988113-/bin/php-7.3.8-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988112 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988113 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.1
call: 988115-/bin/php-5.4.1-c/etc/php_archive.ini-q/in/G7vba 988116- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988115 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988116 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.4.0
call: 988117-/bin/php-5.4.0-c/etc/php_archive.ini-q/in/G7vba 988118-/bin/php-7.3.5-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988117 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988118 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.29
call: 988119-/bin/php-5.3.29-c/etc/php_archive.ini-q/in/G7vba 988120-/bin/php-7.3.4-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988119 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988120 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.28
call: 988123-/bin/php-5.3.28-c/etc/php_archive.ini-q/in/G7vba 988124-/bin/php-7.3.2-c/etc-dextension=sodium.so-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988123 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988124 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.27
call: 988130-/bin/php-5.3.27-c/etc/php_archive.ini-q/in/G7vba 988131- 988132-/bin/php-8.0.0-dextension=vld-0.17.1.so-dvld.active=1-dvld.execute=0/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988130 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988131 [perm] => dr-xr-xr-x [type] => dir ) [4] => Array ( [name] => 988132 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.26
call: 988135-/bin/php-5.3.26-c/etc/php_archive.ini-q/in/G7vba 988136-/bin/php-8.1.0RC3-c/etc-q/in/cs6CE 988137-/bin/php-git-master-c/etc-q/in/biqMY Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988135 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988136 [perm] => dr-xr-xr-x [type] => dir ) [4] => Array ( [name] => 988137 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.25
call: 988136-/bin/php-8.1.0RC3-c/etc-q/in/cs6CE 988138-/bin/php-5.3.25-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988136 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988138 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.24
call: 988136-/bin/php-8.1.0RC3-c/etc-q/in/cs6CE 988140-/bin/php-5.3.24-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988136 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988140 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.23
call: 988136-/bin/php-8.1.0RC3-c/etc-q/in/cs6CE 988141-/bin/php-5.3.23-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988136 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988141 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.22
call: 988136-/bin/php-8.1.0RC3-c/etc-q/in/cs6CE 988142-/bin/php-5.3.22-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988136 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988142 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.21
call: 988143-/bin/php-5.3.21-c/etc/php_archive.ini-q/in/G7vba 988144-/bin/php-8.1.0RC2-c/etc-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988143 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988144 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.20
call: 988145-/bin/php-5.3.20-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988145 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.19
call: 988148-/bin/php-5.3.19-c/etc/php_archive.ini-q/in/G7vba 988149-/bin/php-8.0.11-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988148 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988149 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.18
call: 988151-/bin/php-5.3.18-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988151 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.17
call: 988153-/bin/php-5.3.17-c/etc/php_archive.ini-q/in/G7vba 988154-/bin/php-8.0.8-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988153 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988154 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.16
call: 988156-/bin/php-5.3.16-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988156 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.15
call: 988158-/bin/php-5.3.15-c/etc/php_archive.ini-q/in/G7vba 988160-/bin/php-8.0.5-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988158 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988160 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.14
call: 988161-/bin/php-5.3.14-c/etc/php_archive.ini-q/in/G7vba 988165-/bin/php-8.0.2-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988161 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988165 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.13
call: 988166-/bin/php-5.3.13-c/etc/php_archive.ini-q/in/G7vba 988167- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988166 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988167 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.12
call: 988169-/bin/php-5.3.12-c/etc/php_archive.ini-q/in/G7vba 988170-/bin/php-7.4.25-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988169 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988170 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.11
call: 988172-/bin/php-5.3.11-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988172 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.10
call: 988174-/bin/php-5.3.10-c/etc/php_archive.ini-q/in/G7vba 988175-/bin/php-7.4.22-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988174 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988175 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.9
call: 988176-/bin/php-5.3.9-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988176 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.8
call: 988179-/bin/php-5.3.8-c/etc/php_archive.ini-q/in/G7vba 988180-/bin/php-7.4.19-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988179 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988180 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.7
call: 988182-/bin/php-5.3.7-c/etc/php_archive.ini-q/in/G7vba 988183- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988182 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988183 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.6
call: 988185-/bin/php-5.3.6-c/etc/php_archive.ini-q/in/G7vba 988186-/bin/php-7.4.15-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988185 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988186 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.5
call: 988188-/bin/php-5.3.5-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988188 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.4
call: 988190-/bin/php-5.3.4-c/etc/php_archive.ini-q/in/G7vba 988192-/bin/php-7.4.12-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988190 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988192 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.3
call: 988194-/bin/php-5.3.3-c/etc/php_archive.ini-q/in/G7vba 988195-/bin/php-7.4.10-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988194 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988195 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.2
call: 988200-/bin/php-5.3.2-c/etc/php_archive.ini-q/in/G7vba 988203-/bin/php-7.4.8-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988200 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988203 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.1
call: 988204-/bin/php-5.3.1-c/etc/php_archive.ini-q/in/G7vba 988205-/bin/php-7.4.7-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988204 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988205 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.3.0
call: 988206-/bin/php-5.3.0-c/etc/php_archive.ini-q/in/G7vba 988207-/bin/php-7.4.6-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988206 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988207 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.17
call: 988208-/bin/php-7.4.5-c/etc-dextension=sodium.so-q/in/cs6CE 988209-/bin/php-5.2.17-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988208 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988209 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.16
call: 988211-/bin/php-5.2.16-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988211 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.15
call: 988213-/bin/php-5.2.15-c/etc/php_archive.ini-q/in/G7vba 988214- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988213 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988214 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.14
call: 988215-/bin/php-5.2.14-c/etc/php_archive.ini-q/in/G7vba 988216-/bin/php-7.4.1-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988215 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988216 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.13
call: 988217-/bin/php-5.2.13-c/etc/php_archive.ini-q/in/G7vba 988218-/bin/php-7.4.0-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988217 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988218 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.12
call: 988219-/bin/php-5.2.12-c/etc/php_archive.ini-q/in/G7vba 988220-/bin/php-7.3.32-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988219 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988220 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.11
call: 988221-/bin/php-7.3.31-c/etc-dextension=sodium.so-q/in/cs6CE 988222-/bin/php-5.2.11-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988221 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988222 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.10
call: 988223-/bin/php-7.3.30-c/etc-dextension=sodium.so-q/in/cs6CE 988224-/bin/php-5.2.10-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988223 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988224 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.9
call: 988225-/bin/php-7.3.29-c/etc-dextension=sodium.so-q/in/cs6CE 988226-/bin/php-5.2.9-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988225 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988226 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.8
call: 988228-/bin/php-5.2.8-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988228 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.7
call: 988230-/bin/php-5.2.7-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988230 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.6
call: 988232-/bin/php-5.2.6-c/etc/php_archive.ini-q/in/G7vba 988233- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988232 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988233 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.5
call: 988234-/bin/php-5.2.5-c/etc/php_archive.ini-q/in/G7vba 988235-/bin/php-7.3.24-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988234 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988235 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.4
call: 988236-/bin/php-5.2.4-c/etc/php_archive.ini-q/in/G7vba 988237-/bin/php-7.3.23-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988236 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988237 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.3
call: 988238-/bin/php-5.2.3-c/etc/php_archive.ini-q/in/G7vba 988239-/bin/php-7.3.22-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988238 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988239 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.2
call: 988240-/bin/php-5.2.2-c/etc/php_archive.ini-q/in/G7vba 988241-/bin/php-7.3.21-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988240 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988241 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.1
call: 988242-/bin/php-7.3.20-c/etc-dextension=sodium.so-q/in/cs6CE 988243-/bin/php-5.2.1-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988242 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988243 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.2.0
call: 988244-/bin/php-5.2.0-c/etc/php_archive.ini-q/in/G7vba 988245-/bin/php-7.3.19-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988244 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988245 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.1.6
call: 988246- 988247-/bin/php-5.1.6-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988246 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988247 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.1.5
call: 988249-/bin/php-5.1.5-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988249 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.1.4
call: 988251-/bin/php-5.1.4-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988251 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.1.3
call: 988253-/bin/php-5.1.3-c/etc/php_archive.ini-q/in/G7vba 988254- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988253 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988254 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.1.2
call: 988255-/bin/php-5.1.2-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988255 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.1.1
call: 988258-/bin/php-5.1.1-c/etc/php_archive.ini-q/in/G7vba 988259- Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988258 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988259 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.1.0
call: 988260-/bin/php-5.1.0-c/etc/php_archive.ini-q/in/G7vba 988261-/bin/php-7.3.10-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988260 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988261 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.0.5
call: 988262-/bin/php-5.0.5-c/etc/php_archive.ini-q/in/G7vba 988263-/bin/php-7.3.9-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988262 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988263 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.0.4
call: 988264-/bin/php-7.3.8-c/etc-dextension=sodium.so-q/in/cs6CE 988265-/bin/php-5.0.4-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988264 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988265 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.0.3
call: 988266- 988267-/bin/php-5.0.3-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988266 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988267 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.0.2
call: 988269-/bin/php-5.0.2-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988269 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.0.1
call: 988271-/bin/php-5.0.1-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988271 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 5.0.0
call: 988273-/bin/php-5.0.0-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988273 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.9
call: 988275-/bin/php-4.4.9-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988275 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.8
call: 988277-/bin/php-4.4.8-c/etc/php_archive.ini-q/in/G7vba 988278-/bin/php-7.3.1-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988277 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988278 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.7
call: 988279-/bin/php-4.4.7-c/etc/php_archive.ini-q/in/G7vba 988280-/bin/php-7.3.0-c/etc-dextension=sodium.so-q/in/cs6CE Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988279 [perm] => dr-xr-xr-x [type] => dir ) [3] => Array ( [name] => 988280 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.6
call: 988281-/bin/php-4.4.6-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988281 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.5
call: 988283-/bin/php-4.4.5-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988283 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.4
call: 988285-/bin/php-4.4.4-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988285 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.3
call: 988286-/bin/php-4.4.3-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988286 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.2
call: 988287-/bin/php-4.4.2-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988287 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.1
call: 988288-/bin/php-4.4.1-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988288 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.4.0
call: 988289-/bin/php-4.4.0-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988289 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.11
call: 988290-/bin/php-4.3.11-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988290 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.10
call: 988294-/bin/php-4.3.10-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988294 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.9
call: 988295-/bin/php-4.3.9-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988295 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.8
call: 988296-/bin/php-4.3.8-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988296 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.7
call: 988297-/bin/php-4.3.7-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988297 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.6
call: 988298-/bin/php-4.3.6-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988298 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.5
call: 988299-/bin/php-4.3.5-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988299 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.4
call: 988300-/bin/php-4.3.4-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988300 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.3
call: 988301-/bin/php-4.3.3-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988301 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.2
call: 988302-/bin/php-4.3.2-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988302 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.1
call: 988303-/bin/php-4.3.1-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988303 [perm] => dr-xr-xr-x [type] => dir ) )
Output for 4.3.0
call: 988304-/bin/php-4.3.0-c/etc/php_archive.ini-q/in/G7vba Array ( [0] => Array ( [name] => self [perm] => dr-xr-xr-x [type] => link ) [1] => Array ( [name] => thread-self [perm] => dr-xr-xr-x [type] => link ) [2] => Array ( [name] => 988304 [perm] => dr-xr-xr-x [type] => dir ) )

preferences:
335.93 ms | 402 KiB | 468 Q