Briefing Zend Knowledge

which access modifier in PHP 5 is equivalent to "var"?

You want to run the following PHP 4 code with PHP 5. In the following example, which access
modifier in PHP 5 is equivalent to β€œvar”?
classTest {
var$tester;
}

A.
protected

B.
invisible

C.
public

D.
private

E.
outofscope