ckoning
|
14 years ago
|
on: 90 Percent of People Don't Know How to Use CTRL+F (or CMD + F)
WAY more than 98%. 98% or more don't even know what a regexp is, let alone how to construct one to match what they want to find, and then use the search-forward-regexp tools to actually find the matches.
ckoning
|
15 years ago
|
on: These are things in PHP which make me sad
While it doesn't detract from the point of your post, the behavior of private is correct and intended. If you wish to override an internal method of a class in PHP, like Java, you must declare it protected, not private. This is the difference between private (completely internal, not inherited) and protected (internal, but inherited by subclasses).