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
62 It's complicated. There's eight divisions, and because of how ranking works it doesn't matter necessary who's first right now.
 
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