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
Plaintext
Raw Normal View History

2018-03-23 09:29:34 +00:00
--TEST--
2018-09-03 12:07:08 +00:00
Test whether the extension is loaded.
2018-03-23 09:29:34 +00:00
--FILE--
<?php
2018-08-28 14:11:09 +00:00
if (!extension_loaded('collections')) {
2018-03-23 09:29:34 +00:00
echo "Extension not loaded.", PHP_EOL;
2018-08-28 14:11:09 +00:00
}
2018-03-23 09:29:34 +00:00
?>
--EXPECT--