suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Es besteht ein Inkonsistenzproblem zwischen dem Öffnen von phpinfo im Browser und der Ausführung von phpinfo in der Befehlszeile.

  1. Betriebssystem: MAC OS

  2. Das vom Browser geöffnete Skript v.php

    <?php
    phpinfo();
    输出的版本是``PHP Version 5.6.30``
  3. Führen Sie php v.php in der Befehlszeile aus. Die Ausgabeversion lautet:

    PHP 7.1.6 (cli) (built: Jun 26 2017 00:06:58) ( NTS )
    Copyright (c) 1997-2017 The PHP Group
    Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies

Was ist der Grund dafür?

过去多啦不再A梦过去多啦不再A梦2765 Tage vor1291

Antworte allen(2)Ich werde antworten

  • 为情所困

    为情所困2017-06-26 10:50:55

    可能电脑上面有两个版本的PHP,
    你Apache挂载的localhost服务器用的PHP版本是5.6的;
    而全局php命令用的PHP版本是7.1的。

    Antwort
    0
  • 漂亮男人

    漂亮男人2017-06-26 10:50:55

    在/etc/apache2/httpd.conf中有这么一句修改下

    
    #LoadModule php5_module /usr/local/Cellar/php56/5.6.15/libexec/apache2/libphp5.so
    LoadModule php7_module        libexec/apache2/libphp7.so  //具体地址也可能不是这个,自己搜下 
    

    另外还有个加载配置的

    cd /etc/apache2/other/
    sudo cp php5.conf php7.conf  
    chmod 755 php7.conf #原文件只可读不可写
    

    修改php7.conf

    <IfModule php7_module>
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php-source .phps
    
    <IfModule dir_module>
            DirectoryIndex index.html index.php
    </IfModule>
    </IfModule>
    

    修改httpd.conf

    #Include /private/etc/apache2/other/*.conf  #注释
    
     添加
    
     <IfModule php5_module>
            Include /private/etc/apache2/other/php5.conf
     </IfModule>
        <IfModule php7_module>
            Include /private/etc/apache2/other/php7.conf
        </IfModule>
        

    Antwort
    0
  • StornierenAntwort