I have written a cool little PHP library but it makes use of closures which cause a PARSE ERROR (not a runtime error!) when I run the app on my webhost (1and1). What I would love is something like a c++ preprocessor directive or an CSS version-specific comment that basically ignores a segment of code for PHP < 5.3
$this->register_validator(
function($val) use ($length_expr)
{
$x = strlen($val);
return eval("return $x $length_expr;");
}
);
