View Single Post
  #1  
Old 04-04-2011, 03:07 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Dynamic Functions Thing

I'm not sure what the correct term is but here's what I think would be cool to have...

PHP Code:
function onCreated() {
  
this.testfunc = function () {
    return 
"Hello World";
  };
  echo(
this.testfunc); // should echo "Hello World"

However instead it echos: "function_xxxxxxx_yyyy"

Calling the function instead of returning the name would be so much more useful and fun.
__________________
Quote:
Reply With Quote