I've heard of some performance tips for PHP such as using strtr() over str_replace() over preg_replace() depending on the situation.
As far as using certain functions over others, and code style, what are some of the performance tips that you know of?
Edit: I'm not talking about use of things that make code less readable, like !isset($foo{5} over strlen($foo) < 5, I'm talking about things like using preg_ functions over ereg_ functions for regex.
Edit: The reason I ask this is not for nitpicking over when to optimize, but to get a general idea of what tends to be most efficient in a limited set of alternatives. For instance, checking if a mysql statement returned an error is arguably better practice than suppressing the errors to begin with.