|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[1998-06-30 13:55 UTC] doka at webest dot com
Hi! On Sat, 21 Mar 1998, Rasmus Lerdorf wrote: > Vladimir, I just added a "gpc_order" php3.ini directive and its matching > php3_gpc_order Apache .conf directive. > > gpc_order=GPC Is this difficult thing to add such ability on per-file basis, like <?php_track_vars?> directive? I have many script in one directory and want to treat variables in other, than default, order in some of these scripts. --- Vladimir Litovka <doka@webest.com>, lamer PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 13:00:01 2025 UTC |
IIRC <? php_track_vars ?> doesn't work anymore either (and isn't supposed to). this can be done in .htaccess: <Files foo.php> php_value variables_order = "EGPCS" </Files> <Files bar.php> php_value variables_order = "SCPGE" </Files>