Is it anyhow possible within a PHP class to reference from one static variable to another?
class EmployeeDAO
{
private static $FIND_ALL = 'SELECT * FROM employee';
private static $FIND_BY_NAME = self::$FIND_ALL . // This is not allowed!
' WHERE employee.name LIKE :name';
}