Here is a little trick to get phpinfo() information on the fly.
You need php-cli installed (sometimes its called php4-cli or php5-cli)
echo "<?php phpinfo(); ?>" | php4
echo "<?php phpinfo(); ?>" | php5
echo "<?php phpinfo(); ?>" | php5-cli
etc
You can also tack on a | grep at the end if you want to filter for certain words.
Even better:
php -i
php4 -i
php5 -i
php5-cli -i
Link | December 4th, 2008 at 2:17 am
Nice info. I’ve never known that there are variations in displaying this phpinfo. Gonna try these out. Thanks.
Link | December 5th, 2008 at 7:40 pm