preloader

I want to upgrade my PHP. Where can I find the ./configure line that was used to build my current PHP installation?

DWQA QuestionsCategory: PHPI want to upgrade my PHP. Where can I find the ./configure line that was used to build my current PHP installation?
Jivitesh P Staff asked 4 years ago

Either you look at config.nice file, in the source tree of your current PHP installation or, if this is not available, you simply run a

<?php phpinfo(); ?>
script. On top of the output the ./configure line, that was used to build this PHP installation is shown.

I hope this information will be a great help.