PHP - Can names of private functions inside classes be repeated?

germix

New Member
\[code\]class One{ private function thisfn() {}}class Two{ private function thisfn() {}}\[/code\]is this legit? btw does it matter if it's a private/public function inside a class?And also, can I create a new function named thisfn() outside of any class (and make it public)? like:\[code\] function thisfn(){}\[/code\]
 
Back
Top