Monday, February 6, 2017

How to detect php.ini on mac

  No comments
How to detect php.ini on mac,

easy to detect php.ini folder. you can use 2 way.

1. create file info.php and put this script

<?php
phpinfo();
?>

2. open terminal and type this command

php -i | grep php.ini    

and terminal will show the path folder of php.ini


No comments :

Post a Comment