Is the double colon var resolution valid in an Argument?
title speaks for itself
PHP Code:
// yes yes, make the class etc etc
class TesterS
{
// Make a public constant so its open to the whole class(:S)
public const test = "Its called a test";
// Since that value is a Constant and is set we do this, but could this be done
public function(self::test)
{
return self::test;
}
// end james
}
This is well, pretty much a start where I am in Advanced Programming.. So