⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
shopware
/
vendor
/
meyfa
/
php-svg
/
tests
/
View File Name :
bootstrap.php
<?php /* * This file provides functions from older PHP versions that are no longer present in newer versions. * This is needed because we are on PHPUnit 4.8 which was built long before some things were deprecated. * * Load this file before anything else is run, preferably through php.ini auto_prepend_file. */ if (!function_exists('each')) { function each(&$array) { if (!is_array($array) && !is_object($array)) { return null; } $key = key($array); if ($key === null) { return false; } $value = $array[$key]; next($array); return array( 0 => $key, 'key' => $key, 1 => $value, 'value' => $value, ); } }