Aleksandrs Posted May 2, 2006 Report Share Posted May 2, 2006 Vai ir iespēja definēt vērtību funkcijā, lai tā ir pieejama ārpus funkcijas pēc tam? Link to comment Share on other sites More sharing options...
Klez Posted May 2, 2006 Report Share Posted May 2, 2006 (edited) par to es nezinu, bet tu vari funkcijas rezultaatu pieshkirt mainiigajam, ja nu vieniigi ar define function foo($a){ return $a+10; } $b = foo(5); parasti jau mainiigos definee aarpus funkcijas, un tad $a = 10; function foo($b){ global $a; return $b + $a; } Edited May 2, 2006 by Klez Link to comment Share on other sites More sharing options...
Grey_Wolf Posted May 2, 2006 Report Share Posted May 2, 2006 (edited) Klez --> garaam ;) Aleksandrs--> Jaa ir ... pamegjini izmantot & function bla(&$mainigais,$mainigais2) { $mainigais ='bla'; $mainigais2='KAs nederr?'; } bla($mainigais2,&$mainigais3); echo $mainigais2.$mainigais3; Edited May 2, 2006 by Grey_Wolf Link to comment Share on other sites More sharing options...
john.brown Posted May 2, 2006 Report Share Posted May 2, 2006 (edited) Vispār interesanti - tēma JavaScript, VBScript, bet apspriežam php :) Iekš javascript tev globālie mainīgie ir jānodefinē papriekš ĀRPUS funkcijām. Pēc tam tu tiec tiem klāt no jebkuras vietas funkcijās var globVar = 0; function varPlus() { globVar++; } varPlus(); document.write(globVar); Edited May 2, 2006 by john.brown Link to comment Share on other sites More sharing options...
Aleksandrs Posted May 2, 2006 Author Report Share Posted May 2, 2006 Paldies, strādā. Ar iepriekš nodefinēšanu bija problēmas. Link to comment Share on other sites More sharing options...
Recommended Posts