hi there.
Could someone tell me if PHP4 has some fair runtime optimization so calls to blank class methods have NO cost?
I mean: the same way the PHP preprocessor removes comments and resolves included or required files, would a function or method call to a blank function have some cost?
by blank function I mean this (note there is no return value):
function whatever($v1, $v2, ..., $vn)
{
}