|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-07-01 16:30 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 00:00:02 2025 UTC |
Description: ------------ The var. $_SERVER['argv'] returns an array with only ONE element, that contains all the query string. I don't think is correct... why the var. contains an array with only one string, and not directly a (less expensive) string? Reproduce code: --------------- print_r($_SERVER['argv']); Expected result: ---------------- string type: l=26&p=5&g=fsd OR Array ( [0] => l=26 [1] => p=5 [2] => g=fsd ) Actual result: -------------- Array ( [0] => l=26&p=5&g=fsd )