Tagged Questions
7
votes
2answers
2k views
How to get phpinfo() variables from php programatically?
I am attempting to get a list of dependable(consistent across requests) list of "hidden" constants in PHP(as in, the client-side won't know about it in most cases without hacking).
Some of the ...
5
votes
3answers
960 views
What is the name of your system with PHP_OS constant
I use PHP_OS constant and I want to know what it can return on differents OS.
I found this :
On Linux -> Linux
On FreeDSB -> FreeBSD
On Windows NT -> WINNT
On Mac Os X -> Darwin
Can anyone tell ...
6
votes
7answers
5k views
Is there an equivalent to phpinfo() in ASP.NET?
I've looped over the Request.ServerVariables collection in ASP.NET, but it's not as comprehensive as phpinfo().
Anyone aware of a script for ASP.NET that includes all that info, including server ...