config root man

Current Path : /usr/opt/php72/share/pear/test/imagick/tests/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/opt/php72/share/pear/test/imagick/tests/bug64015.phpt

--TEST--
Test PHP bug #64015
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$im = new Imagick(dirname(__FILE__) . '/php.gif');
var_dump($im->getImageLength());

// Both should return filesize in bytes.

var_dump($im->getImageLength());

// All cases below now return 0;
$cloned_im = clone $im;
var_dump($im->getImageLength());

echo "OK" , PHP_EOL;


?>
--EXPECTF--
int(2523)
int(2523)
int(2523)
OK

Man Man