Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 18.191.174.4
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
php /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
Console_Getopt
[ DIR ]
drwxrwxrwx
Structures_Graph
[ DIR ]
drwxrwxrwx
XML_Util
[ DIR ]
drwxrwxrwx
beehiveforum082
[ DIR ]
drwxrwxrwx
emptyDir
[ DIR ]
drwxrwxrwx
kohana22
[ DIR ]
drwxrwxrwx
parseDir
[ DIR ]
drwxrwxrwx
parseFile
[ DIR ]
drwxrwxrwx
AllTests.php
3.97
KB
-rw-rw-rw-
PHP_CompatInfo_TestSuite_Bugs....
26.23
KB
-rw-rw-rw-
PHP_CompatInfo_TestSuite_Cli.p...
27.54
KB
-rw-rw-rw-
PHP_CompatInfo_TestSuite_Stand...
113.31
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
checkMax.php
1.29
KB
-rw-rw-rw-
sample_req6056.php
910
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AllTests.php
<?php /** * Test suite for PHP_CompatInfo * * PHP version 5 * * @category PHP * @package PHP_CompatInfo * @author Laurent Laville <pear@laurent-laville.org> * @license http://www.opensource.org/licenses/bsd-license.php BSD * @version CVS: $Id: AllTests.php,v 1.4 2008/07/22 20:27:11 farell Exp $ * @link http://pear.php.net/package/PHP_CompatInfo * @since File available since Release 1.6.0 */ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'PHP_CompatInfo_AllTests::main'); } require_once 'PHPUnit/Framework/TestSuite.php'; require_once 'PHPUnit/TextUI/TestRunner.php'; chdir(dirname(__FILE__)); require_once 'PEAR/Config.php'; require_once 'PHP_CompatInfo_TestSuite_Standard.php'; require_once 'PHP_CompatInfo_TestSuite_Bugs.php'; /** * Class for running all test suites for PHP_CompatInfo package. * * @category PHP * @package PHP_CompatInfo * @author Laurent Laville <pear@laurent-laville.org> * @license http://www.opensource.org/licenses/bsd-license.php BSD * @version Release: @package_version@ * @link http://pear.php.net/package/PHP_CompatInfo * @since File available since Release 1.6.0 */ class PHP_CompatInfo_AllTests { /** * Runs the test suite. * * @return void */ public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } /** * Adds the PHP_CompatInfo test suite. * * @return object the PHPUnit_Framework_TestSuite object */ public static function suite() { $suite = new PHPUnit_Framework_TestSuite('PHP_CompatInfo Test Suite'); $suite->addTestSuite('PHP_CompatInfo_TestSuite_Standard'); $suite->addTestSuite('PHP_CompatInfo_TestSuite_Bugs'); if (PHP_CompatInfo_AllTests::packageInstalled('Console_GetArgs', '1.3.3') && PHP_CompatInfo_AllTests::packageInstalled('Console_Table', '1.0.5')) { /* Add CLI test suite, only if packages below are installed on your system : - Console_GetArgs 1.3.3 or better - Console_Table 1.0.5 or better */ include_once 'PHP_CompatInfo_TestSuite_Cli.php'; $suite->addTestSuite('PHP_CompatInfo_TestSuite_Cli'); } return $suite; } /** * Check if a package is installed * * Simple function to check if a package is installed under user * or system PEAR installation. Minimal version and channel info are supported. * * @param string $name Package name * @param string $version (optional) The minimal version * that should be installed * @param string $channel (optional) The package channel distribution * @param string $user_file (optional) file to read PEAR user-defined * options from * @param string $system_file (optional) file to read PEAR system-wide * defaults from * * @static * @return bool * @since PEAR_Info version 1.6.0 (2005-01-03) * @see PEAR_Info::packageInstalled() */ public static function packageInstalled($name, $version = null, $channel = null, $user_file = '', $system_file = '') { $config =& PEAR_Config::singleton($user_file, $system_file); $reg =& $config->getRegistry(); if (is_null($version)) { return $reg->packageExists($name, $channel); } else { $info = &$reg->getPackage($name, $channel); if (is_object($info)) { $installed['version'] = $info->getVersion(); } else { $installed = $info; } return version_compare($version, $installed['version'], '<='); } } } if (PHPUnit_MAIN_METHOD == 'PHP_CompatInfo_AllTests::main') { PHP_CompatInfo_AllTests::main(); } ?>
Close