mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
9 lines
193 B
PHP
9 lines
193 B
PHP
<?php
|
|
|
|
if (!extension_loaded("interbase")) print "skip interbase extension not available";
|
|
require("interbase.inc");
|
|
if(!@ibase_connect($test_base)){
|
|
die("skip cannot connnect");
|
|
}
|
|
?>
|