mirror of
https://github.com/danog/ext-pq.git
synced 2024-12-02 09:18:02 +01:00
8 lines
171 B
PHP
8 lines
171 B
PHP
<?php
|
|
function _ext($ext) {
|
|
extension_loaded($ext) or die("skip $ext not loaded");
|
|
}
|
|
_ext("pq");
|
|
include "_setup.inc";
|
|
defined("PQ_DSN") or die("skip PG_DSN undefined");
|