This repository has been archived on 2018-05-01. You can view files and clone it, but cannot push or open issues or pull requests.
ext-ioctl/tests/00-loaded.phpt

9 lines
156 B
PHP

--TEST--
Test whether ext-ioctl is loaded.
--FILE--
<?php
if (!extension_loaded('ioctl'))
echo 'Extension ioctl is not loaded.', PHP_EOL;
?>
--EXPECT--