mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
8 lines
193 B
PHP
8 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");
|
|
}
|
|
?>
|