Good vs. Evil

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

erindalc

Popular Member
Mar 3, 2015
992
512
109
Steam
62 It's complicated. There's eight divisions, and because of how ranking works it doesn't matter necessary who's first right now.
 

lenscas

Over-Achiever
Jul 31, 2013
2,015
1,801
248
75 and I found a new fun thing about php
Guess what this will do
Code:
$someVariable="test";
$someFunction=function() use($someVariable){
echo $someVariable;
};
$someVariable="test2";
$someFunction();

It will print test. This is because the use keyword only looks at the values of the variables when you declare the function and not when you actually use the function