|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2005-08-28 03:03 UTC] sniper@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 01:00:01 2025 UTC | 
Description: ------------ If, from the CMD line of my Win XP Pro, I invoke the CLI php.exe to do: <? phpinfo() ?> then I see that only the _SERVER["argv"] line has html markup: [0] => - instead of [0] => - That seems incorrect, being at odds with the rest of the output generated, which has no html markup. Csaba Gabor from Vienna Reproduce code: --------------- php.exe -r "phpinfo();" Expected result: ---------------- ... [0] => - ... Actual result: -------------- ... _SERVER["REQUEST_TIME"] => 1125184797 _SERVER["argv"] => Array ( [0] => - ) _SERVER["argc"] => 1 ...