PHP Warning: Module already loaded in Unknown on line 0

前端 未结 15 1240
抹茶落季
抹茶落季 2020-11-27 16:38

On Mac OSX Mavericks using homebrew php55 whenever I run a a php command I get the following error message (everything runs fine it\'s just annoying)

PHP War         


        
15条回答
  •  Happy的楠姐
    2020-11-27 17:30

    To fix this problem, you must edit your php.ini (or extensions.ini) file and comment-out the extensions that are already compiled-in. For example, after editing, your ini file may look like the lines below:

    ;extension=pcre.so
    ;extension=spl.so
    

    Source: http://www.somacon.com/p520.php

提交回复
热议问题