This repository has been archived on 2020-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
ext-collections/tests/000-loaded.phpt

10 lines
161 B
PHP

--TEST--
Test whether the extension is loaded.
--FILE--
<?php
if (!extension_loaded('collections')) {
echo "Extension not loaded.", PHP_EOL;
}
?>
--EXPECT--