<?php class TestPrivateMethod { private function echoTest() { echo "Test\n"; } } $obj = new TestPrivateMethod(); echo method_exists($obj, "echoTest"), "\n";
You have javascript disabled. You will not be able to edit any code.