0

私は macOS Sierra (10.12.6) と php7.1 を実行していますが、長い間、PDO::FETCH_ASSOC を含む php ファイルを読み取る方法を見つけようとしていました。php が拡張子 pdo_pgsql で正しく構成されていないことに関連していると思われるエラーが表示されます。php ファイルは次のようになります。

<?php 
error_reporting(E_ALL);
ini_set('display_errors', '1');
$db = new PDO('pgsql:host=localhost;port=5432;dbname=some_db;', 'username', 'password');
$sql = $db->query("SELECT id, name, image, web, category, ST_AsGeoJSON(geom, 5) as geom FROM some_file ORDER BY name");
$features=[];
while ($row=$sql->fetch(PDO::FETCH_ASSOC)){
    $feature=['type'=>'Feature'];
    $feature['geometry']=json_decode($row['geom']);
    unset($row['geom']);
    $feature['properties']=$row;
    array_push($features, $feature);
}
$featureCollection=['type'=>'FeatureCollection', 'features'=>$features];
echo json_encode($featureCollection);
?>

それを参照しているhtmlファイルの部分は次のとおりです。

        <!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>WebMap 101</title>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css">
    <script src="https://unpkg.com/leaflet@1.0.1/dist/leaflet.js"></script>
    <script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
    <script src="resources/leaflet.ajax.js"></script>
    <script src="resources/turf.min.js"></script>
    <style>
        #header {
            height: 75px;
            background-color: darkgoldenrod;
        }

        #mapdiv {
            height: 650px;
            background-color: salmon;
        }

        #side_panel {
            height: 650px;
            background-color: beige;
        }

        #footer {
            height: 75px;
            background-color: darkgray
        }

        .attraction {
            margin-bottom: 5px;
        }

    </style>
</head>



<body>
    <div id="header" class="col-md-12">
        <h1 class="text-center">Mexico City</h1>
    </div>
    <div id="side_panel" class="col-md-3">
        <h1 class="text-center">Attractions</h1>
        <button id="zoomToZocalo" class="form-control btn-primary">Zocalo</button>
    </div>
    <div id="mapdiv" class="col-md-9"></div>
    <div id="footer" class="col-md-12">
        <h4 id="map_coords" class="text-center">Latitude: 19.4 Longitude: -99.1 Zoom Level: 11</h4>
        <h4 class="text-center">&copy;2016 <a href="http:page_name.com">Page name</a></h4>
    </div>
    <script>
        var mymap = L.map('mapdiv')
        mymap.setView([19.4, -99.1], 11);

        var backgroundLayer = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png');
        mymap.addLayer(backgroundLayer);




        var zocaloMarker = L.marker([19.43278, -99.13333]).addTo(mymap).bindPopup("<h3 class='text-center'>Zocalo</h3><a href='https://en.wikipedia.org/wiki/Z%C3%B3calo' target='blank'><img src='img/zocalo.jpg' width='200px'></a>");

        $("#zoomToZocalo").click(function() {
            mymap.setView([19.43278, -99.13333], 17);
        });


        var lyrAttractions;
        $.ajax({
            url: 'load_attractions.php',
            success: function(response) {
                if (lyrAttractions) {
                    mymap.removeLayer(lyrAttractions)
                };
                lyrAttractions = L.geoJSON(JSON.parse(response), {
                    pointToLayer: function(feature, latlng) {
                        var str = "<button id='zoomTo" + feature.properties.name.replace(/ /g, '');
                        str += "' class='form-control btn btn-primary attraction'>";
                        str += feature.properties.name + "</button>";
                        $("#side_panel").append(str);
                        $("#zoomTo" + feature.properties.name.replace(/ /g, '')).click(function() {
                            mymap.setView([latlng.lat, latlng.lng], 17);
                        });


                        var str = "<h4 class='text-center'>" + feature.properties.name + "</h4><hr>";
                        str += "<a href='" + feature.properties.web + "' target='blank'>";
                        str += "<img src='img/" + feature.properties.image + "' width='200px'>";
                        str += "</a>";
                        return L.marker(latlng).bindPopup(str);

                }});
                lyrAttractions.addTo(mymap);
                mymap.fitBounds(lyrAttractions.getBounds());
            }});

        mymap.on('mousemove', function(e) {
            var str = "Latitude: " + e.latlng.lat.toFixed(5) + " Longitude: " + e.latlng.lng.toFixed(5) + " Zoom Level: " + mymap.getZoom();
            $("#map_coords").html(str);
        });
    </script>
</body>
</html>

Google 開発者ツールでは、次のエラーが表示されます。

VM102:1 Uncaught SyntaxError: Unexpected token < in JSON at position 0
at JSON.parse (<anonymous>)
at Object.success ((index):80)
at i (jquery-2.2.4.min.js:2)
at Object.fireWith [as resolveWith] (jquery-2.2.4.min.js:2)
at z (jquery-2.2.4.min.js:4)
at XMLHttpRequest.<anonymous> (jquery-2.2.4.min.js:4)

80行目は上記に対応しています"lyrAttractions = L.geoJSON(JSON.parse(response), {"

[ネットワーク] タブには次が表示されます。

画像: Google Developer の [ネットワーク] タブ

また、ネットワーク -> load_attraction.php の [Respons] タブには次のように表示されます。

<br />
<font size='1'><table class='xdebug-error xe-uncaught-exception' dir='ltr' border='1' cellspacing='0' cellpadding='1'>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Fatal error: Uncaught Error: Call to a member function fetch() on boolean in /Users/agh/Sites/webmaps101/load_attractions.php on line <i>7</i></th></tr>
<tr><th align='left' bgcolor='#f57900' colspan="5"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> Error: Call to a member function fetch() on boolean in /Users/agh/Sites/webmaps101/load_attractions.php on line <i>7</i></th></tr>
<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>
<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>
<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0245</td><td bgcolor='#eeeeec' align='right'>362600</td><td bgcolor='#eeeeec'>{main}(  )</td><td title='/Users/agh/Sites/webmaps101/load_attractions.php' bgcolor='#eeeeec'>.../load_attractions.php<b>:</b>0</td></tr>
</table></font>

60時間以上経った今でも解決策が見つからず、落ち込んでいるデラックスになり始めています. 私の推測では、php 拡張 pdo_pgsql が正しく機能していないということです。brew install php@7.1、を使用して自作でphp @ 7.1をインストールしました

役に立つかもしれないいくつかのものを次に示します $ php -v

Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
    with Xdebug v2.7.2, Copyright (c) 2002-2019, by Derick Rethans
    with Zend OPcache v7.1.30, Copyright (c) 1999-2018, by Zend Technologies

$ which php戻り値:

/usr/local/opt/php@7.1/bin/php

$ php -m | grep pdo_pgsql戻り値: pdo_pgsql

そして $ php --ini戻ります:

Configuration File (php.ini) Path: /usr/local/etc/php/7.1
Loaded Configuration File:         /usr/local/etc/php/7.1/php.ini
Scan for additional .ini files in: /usr/local/etc/php/7.1/conf.d
Additional .ini files parsed:      /usr/local/etc/php/7.1/conf.d/ext-opcache.ini

$ brew doctor戻り値:

Warning: "config" scripts exist outside your system or Homebrew directories.
`./configure` scripts often look for *-config scripts to determine if
software packages are installed, and which additional flags to use when
compiling and linking.

Having additional scripts in your path can confuse software installed via
Homebrew if the config script overrides a system or Homebrew-provided
script of the same name. We found the following "config" scripts:
  /usr/local/php5/bin/curl-config
  /usr/local/php5/bin/freetype-config
  /usr/local/php5/bin/icu-config
  /usr/local/php5/bin/iodbc-config
  /usr/local/php5/bin/libmcrypt-config
  /usr/local/php5/bin/libpng-config
  /usr/local/php5/bin/libpng12-config
  /usr/local/php5/bin/php-config
  /usr/local/php5/bin/xslt-config
  /Library/Frameworks/Python.framework/Versions/3.6/bin/python3-config
  /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6-config
  /Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6m-config
  /Library/Frameworks/Python.framework/Versions/3.7/bin/python3-config
  /Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7-config
  /Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7m-config
  /Applications/Postgres.app/Contents/Versions/latest/bin/gdal-config

Warning: You have unlinked kegs in your Cellar.
Leaving kegs unlinked can lead to build-trouble and cause brews that depend on
those kegs to fail to run properly once built. Run `brew link` on these:
  git
  python

phpinfo-file を実行すると、次のようになります。

Server API  Apache 2.0 Handler
Virtual Directory Support   disabled
Configuration File (php.ini) Path   /usr/local/etc/php/7.1
Loaded Configuration File   /usr/local/etc/php/7.1/php.ini
Scan this dir for additional .ini files /usr/local/etc/php/7.1/conf.d
Additional .ini files parsed    /usr/local/etc/php/7.1/conf.d/ext-opcache.ini
PHP API 20160303
PHP Extension   20160303
Zend Extension  320160303
Zend Extension Build    API320160303,NTS
PHP Extension Build API20160303,NTS

同じファイルのさらに下:

pdo_pgsql
PDO Driver for PostgreSQL   enabled
PostgreSQL(libpq) Version   11.3
Module version  7.1.30
Revision    $Id: 9c5f356c77143981d2e905e276e439501fe0f419 $

ランニングpear config-showリターン:

Auto-discover new Channels     auto_discover    <not set>
Default Channel                default_channel  pear.php.net
HTTP Proxy Server Address      http_proxy       <not set>
PEAR server [DEPRECATED]       master_server    pear.php.net
Default Channel Mirror         preferred_mirror pear.php.net
Remote Configuration File      remote_config    <not set>
PEAR executables directory     bin_dir          /usr/local/opt/php@7.1/bin
PEAR documentation directory   doc_dir          /usr/local/share/pear@7.1/doc
PHP extension directory        ext_dir          /usr/local/lib/php/pecl/20160303/
PEAR directory                 php_dir          /usr/local/share/pear@7.1
PEAR Installer cache directory cache_dir        /private/tmp/pear/cache
PEAR configuration file        cfg_dir          /usr/local/share/pear@7.1/cfg
directory
PEAR data directory            data_dir         /usr/local/share/pear@7.1/data
PEAR Installer download        download_dir     /private/tmp/pear/download
directory
Systems manpage files          man_dir          /usr/local/share/man
directory
PEAR metadata directory        metadata_dir     <not set>
PHP CLI/CGI binary             php_bin          /usr/local/opt/php@7.1/bin/php
php.ini location               php_ini          /usr/local/etc/php/7.1/php.ini
--program-prefix passed to     php_prefix       <not set>
PHP's ./configure
--program-suffix passed to     php_suffix       <not set>
PHP's ./configure
PEAR Installer temp directory  temp_dir         /private/tmp/pear/temp
PEAR test directory            test_dir         /usr/local/share/pear@7.1/test
PEAR www files directory       www_dir          /usr/local/share/pear@7.1/htdocs
Cache TimeToLive               cache_ttl        3600
Preferred Package State        preferred_state  stable
Unix file mask                 umask            22
Debug Log Level                verbose          1
PEAR password (for             password         <not set>
maintainers)
Signature Handling Program     sig_bin          /usr/local/bin/gpg
Signature Key Directory        sig_keydir       /usr/local/etc/php/7.1/pearkeys
Signature Key Id               sig_keyid        <not set>
Package Signature Type         sig_type         gpg
PEAR username (for             username         <not set>
maintainers)
User Configuration File        Filename         /Users/agh/.pearrc
System Configuration File      Filename         /usr/local/etc/php/7.1/pear.conf

php7.3 と php7.2 も試しましたが、モジュール API(=20160303) と PHP API(=20170718) が一致せず、拡張子 pso_pgsql が読み込めないという問題が発生しました。php7.1 (モジュールと同じ API を使用) をインストールすると、少なくともその問題はなくなりました。

extension=pdo_pgsql.soただし、 php.ini ファイルを追加して実行するphp --iniと、次のエラーが表示されます。PHP Warning: Module 'pdo_pgsql' already loaded in Unknown on line 0

pdo_pgsql.so がロードされる別のファイルが存在する可能性があることを読みましたが、conf.d フォルダーを調べることを提案する人もいます。以前は conf.d に複数のファイルがありました (以前の php インストール時 (7.2 および 7.3)、たとえば「ext-pdo_pgsql.ini」だったと思います。 opcache.so ファイルはどこにありますか?しかし、pdo_pgsql.so をロードできる場所は他にありますか?

ファイル pdo_pgsql.so のアイコンが、最近 pecl でインストールした拡張機能に接続されているアイコンと異なることに気付きました。pdo_pgsql には、"exec" というテキストが表示された黒いターミナルと、その他の拡張機能は単なるホワイト ペーパーです。最初に pdo_pgsql.so ファイルをいつ取得したか思い出せません (非常に多くのことを試したためpecl install pdo_pgsql)。

Installing shared extensions:     /private/tmp/pear/temp/pear-build-aghlTd4GE/install-PDO-1.0.3/usr/local/Cellar/php@7.1/7.1.30_1/pecl/20160303/
cp: modules/*: No such file or directory
make: *** [install-modules] Error 1
ERROR: `make INSTALL_ROOT="/private/tmp/pear/temp/pear-build-aghlTd4GE/install-PDO-1.0.3" install' failed

ここにあるスクリプトを実行して pdo_pgsql.so を取得した可能性があると思います: https://gist.github.com/doole/8651341いくつかの変更で動作するようです。最終的には次のように返されます。

extension=/usr/local/lib/php/extensions/pdo_pgsql.so

で指定された同じext_dirフォルダーにファイルを手動で移動しますpear config-show(ただし、運が悪い場合はext_dirをに変更しようとしました/usr/local/lib/php/extensions/。)

しかし、実行時に pdo_pgsql が表示されるので、$ php -m既に (?) php パッケージに含まれていると思いますか? しかし、すでにロードされているというエラーなしに、php.ini ファイルにロードできるようにするにはどうすればよいでしょうか。一方、phpinfo-file には、PostgreSQL 用の PDO ドライバーが有効になっていると記載されています。php.iniでロードするように指示せずに、デフォルトでロードしますか? それが「すでにロードされている」理由ですか?

すぅ…間違った方向を見ていますか?私の元のエラー PDO::FETCH_ASSOC は別の原因ですか? もしそうなら、一体何ができるのでしょうか?

どなたかアドバイスいただけると大変助かります。私はアイデアがありません。

4

0 に答える 0