I am trying to understand examples in PSR-0, but to no avail. I know that \\ is directory separator (at least in my windows OS), and in my humble opinion, it ca
\ is used as a delimiter for namespaces and / is used as the directory separator for files. The example is based on a unix system.
Although \ is used as a directory separator on you windows using / will work as well (e.g. for loading files). But if you would like the correct directory separator on all systems you can always use the system specific constant DIRECTORY_SEPARATOR.