diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-05-24 21:18:39 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-05-24 21:18:39 -0500 |
commit | b3286eb015079950554508e0724fd5f12c71833f (patch) | |
tree | 8ac93accb2465c0b3dc34e78686beeac879eaf68 /vendor/maxmind-db/reader/ext/tests/001-load.phpt | |
parent | 864f1349e47f924bcde20c1cc83d838b5c5c7316 (diff) | |
download | ifconfig.php-b3286eb015079950554508e0724fd5f12c71833f.tar.gz ifconfig.php-b3286eb015079950554508e0724fd5f12c71833f.tar.bz2 ifconfig.php-b3286eb015079950554508e0724fd5f12c71833f.zip |
add geolocation functionality
Diffstat (limited to 'vendor/maxmind-db/reader/ext/tests/001-load.phpt')
-rw-r--r-- | vendor/maxmind-db/reader/ext/tests/001-load.phpt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/maxmind-db/reader/ext/tests/001-load.phpt b/vendor/maxmind-db/reader/ext/tests/001-load.phpt new file mode 100644 index 0000000..09810ee --- /dev/null +++ b/vendor/maxmind-db/reader/ext/tests/001-load.phpt @@ -0,0 +1,12 @@ +--TEST-- +Check for maxminddb presence +--SKIPIF-- +<?php if (!extension_loaded('maxminddb')) { + echo 'skip'; +} ?> +--FILE-- +<?php +echo 'maxminddb extension is available'; +?> +--EXPECT-- +maxminddb extension is available |