It should mention the charset=utf8 DSN option. Omitting that when you need it (and you need it if your database is set to use utf8) can lead to a world of annoyance.
First of all, why would the size of the project be relevant to using OOP? If you mean "free to write procedural hacks", the "new" statement is not going to make much difference to the complexity of the code.
On bigger projects, you may want to optimize certain queries beyond the limitations and overhead of the ORM abstraction, and go for straight SQL. (And since most ORM's use PDO, you can often steer away from complete duplication.)