Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPのremote_server ipに基づいてアドレスを取得するためのgeoipをインストールしました。システムに Geoip パッケージをインストールし、php5-geoip php 拡張機能もインストールしました。しかし、次のスクリプトを実行すると、致命的なエラーが表示されます。
geoip_open("GeoIP.dat",GEOIP_STANDARD);
エラーは
Fatal error: Call to undefined function geoip_open()
その後、ファイルをインクルードするgeoip_incと、このエラーは表示されず、表示されmaxMind libraryませんphp extension
geoip_inc
maxMind library
php extension
include("include/geoip.inc"); $gi = geoip_open("include/GeoIP.dat", GEOIP_STANDARD);