⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
imagick-3.4.4
/
tests
/
View File Name :
254_getConfigureOptions.phpt
--TEST-- Test Imagick::getConfigureOptions --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); checkClassMethods('Imagick', array('getconfigureoptions')); ?> --FILE-- <?php $allOptions = Imagick::getConfigureOptions(); if (!is_array($allOptions)) { echo "Failed to return array".PHP_EOL; var_dump($options); } else if (count($allOptions) == 0) { echo "allOptions is empty".PHP_EOL; } $optionsStartingWithC = Imagick::getConfigureOptions("C*"); if (!is_array($optionsStartingWithC)) { echo "Failed to return array".PHP_EOL; var_dump($optionsStartingWithC); } else if (count($optionsStartingWithC) == 0) { echo "optionsStartingWithC is empty".PHP_EOL; } if (!(count($optionsStartingWithC) < count($allOptions))) { echo ""; var_dump($optionsStartingWithC); var_dump($allOptions); } foreach ($optionsStartingWithC as $key => $value) { $key = strtolower($key); if (strpos($key, "c") !== 0) { echo "key $key does not start with c".PHP_EOL; } } echo "Ok"; ?> --EXPECTF-- Ok