This repository has been archived on 2018-04-01. You can view files and clone it, but cannot push or open issues or pull requests.
php-asio/tests/00-load.phpt

9 lines
139 B
PHP

--TEST--
Check for whether php-asio is loaded.
--FILE--
<?php
if (!extension_loaded('asio'))
echo 'php-asio not loaded.'
?>
--EXPECT--