By far the worst practice I have ever seen is suggesting that eval() should ever be used under any circumstance what-so-ever. eval() is evil. Never ever use eval(). If you feel like you have no other choice, there's a 99.99% chance you've done something horribly, horribly wrong.
There are also particularly egregious examples of system function misuse (backtick operators, system(), passthru())
@jcoby, I have to disagree with you on DIRECTORY_SEPARATOR. It's a matter of personal preference. I personally prefer the constant as it is more precise. If paths are exported to logs or other displays, I know they are valid without the need for paranoid transformations and can be used by out-of-band scripts. As for readability, the example you gave could easily have been rewritten as:
// Load configuration settings.
require_once(implode(DIRECTORY_SEPARATOR, array(
SF_ROOT_DIR,
'apps',
SF_APP,
'config',
'config.php'
));
Which is readable and arguably easier to modify than scanning through a string. I'm not suggesting that using the constant is a better practice, I'm just suggesting that it's a matter of personal preference and consistency should be followed whatever the choice may be.