ok
Direktori : /opt/cloudlinux/alt-php56/root/usr/share/pear/test/imagick/tests/ |
Current File : //opt/cloudlinux/alt-php56/root/usr/share/pear/test/imagick/tests/271_imagick_constants.phpt |
--TEST-- Imagick::readImage test --SKIPIF-- <?php require_once(dirname(__FILE__) . '/skipif.inc'); ?> --FILE-- <?php $reflClass = new ReflectionClass('Imagick'); $constants = $reflClass->getConstants(); $output = ''; foreach ($constants as $key => $value) { $output .= "$key: $value \n"; } echo "Ok"; ?> --EXPECTF-- Ok