This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/tests/includes/loaded.php

15 lines
262 B
PHP

<?php
/**
* Check whether the php-armadillo extension is loaded.
*
* @return bool
*/
function is_php_arma_loaded() {
if (!extension_loaded('arma')) {
echo 'skip armadillo extension is not loaded.';
return false;
}
return true;
}