관리-도구
편집 파일: 111.phpt
--TEST-- RarEntry::getVersion() --SKIPIF-- <?php if(!extension_loaded("rar")) die("skip"); --FILE-- <?php $a = rar_open(dirname(__FILE__) . '/rar5-links.rar'); $e = $a->getEntry('file1.txt'); var_dump($e->getVersion()); echo "Done.\n"; --EXPECTF-- int(50) Done.