Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Sara Golemon's Blog:
create_function() is not your friend
May 21, 2007 @ 14:31:00

In response to this previous post from Felix Geisendorfer, Sara Golemon shares a few thoughts on why she thinks it's just the other way around - create_function is not your friend.

In the short post she lists just a few of the issues surrounding the use of the function including that it:

  • is prone to critical abuse by user-supplied code
  • skips opcode cache optimizations
  • encourages not using comments (evil)
  • 100% blind to reflection or PHPDoc style documentation generation

tagged: createfunction eval abuse opcodecache reflection phpdoc createfunction eval abuse opcodecache reflection phpdoc

Link:


Trending Topics: