daGrevis Posted February 15, 2010 Report Share Posted February 15, 2010 Sveiki, Jautājums tāds: Vai ir jēgs, piemēram, $_SESSION['value'] definēt atsevišķā mainīgajā un tad tālāk spēlēties ar viņu?? Ātrums, loģika? echo $_SESSION['value']; if($_SESSION['value']) { echo $_SESSION['value']; } $value = $_SESSION['value']; echo $value; if($value) { echo $value; } Tas pats attiecās uz $_GET, $_POST utml.... :) Ceru, ka palīdzēsiet. :) Quote Link to comment Share on other sites More sharing options...
Mastermind Posted February 15, 2010 Report Share Posted February 15, 2010 Sesijai nav jēgas! GET un POST mainīgajiem ir jēgas tos novalidēt, pirms izmantot kaut kā kodā, ideja sekojoša: function validateRequestVars($value) { // te veic visu validaciju GET, POST un COOKIE variabljiem } function processRequestVars() { foreach ($_REQUEST as $key=>$val) { $$key = validateRequestVars($val); } } // izpildam pieprasīto mainīgo apstrādi processRequestVars(); // izmantojam variabļus, piemēram $_REQUEST['page'] gadījumā: if (!empty($page)) { // tātad, $_REQUEST['page'] ir tici pieprasīts šai pieprasījumā un tas nav tukšs } Quote Link to comment Share on other sites More sharing options...
briedis Posted February 15, 2010 Report Share Posted February 15, 2010 Nedomāju, ka ātrums īpaši cietīs. Loģika varētu būt, ka sanāk īstāk rakstīt... Quote Link to comment Share on other sites More sharing options...
Delfins Posted February 15, 2010 Report Share Posted February 15, 2010 ir ir ērtāk.. jo tad var nomainīt opcijas gan no sessijas, gan no kukijiem, gan no DB. Quote Link to comment Share on other sites More sharing options...
Kemito Posted February 15, 2010 Report Share Posted February 15, 2010 SESSIJAI tiešam domāju nav jēga definēt mainīgo! POST datus parasti filtrē tāka vaidzība ir! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.