I think this may be a stupid question, but I am quite confused whether I need to escape backslash in PHP.
echo 'Application\Models\User'; prints Application\Models\User
echo 'Application\\Models\\User'; same output
echo 'Application\Model\'User'; gives Application\Model'User
So it's a escape character, shouldn't I need to escape it (\
) if I want to refer to Application\Models\User
?