Skip to content

Instantly share code, notes, and snippets.

@rmvanda
Created June 24, 2015 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmvanda/ade4cc483fb3d6bb4e35 to your computer and use it in GitHub Desktop.
Save rmvanda/ade4cc483fb3d6bb4e35 to your computer and use it in GitHub Desktop.
<?php
class A {
public static function Test($a, $b) {
echo "From A::Test() with $a and $b";
}
}
A::Test("This comes second, even though it came first",
print("- becuase this gets evaulated before the A::Test()")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment