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

9 lines
158 B
Plaintext
Raw Normal View History

2018-03-23 09:29:34 +00:00
--TEST--
Check whether the extension is loaded.
--FILE--
<?php
if (!extension_loaded('collections'))
echo "Extension not loaded.", PHP_EOL;
?>
--EXPECT--