I want to check is a function exists in a library that I am creating, which is static. I\'ve seen function and method_exists, but haven\'t found a way that allows me to call
Ahh, apologies. I was temporarily blind :) You'll want to use the magic constant __CLASS__
e.g.
if (method_exists(__CLASS__, "test3")) { echo "Hi"; }