Günni: forward slash VS backslash

Beitrag lesen

Morgen Leute!

Unter http://www.php.net/manual/de/domdocument.load.php steht:
Unix style paths with forward slashes can cause significant performance degradation on Windows systems; be sure to call realpath() in such a case.

Kann ich den relative Pfad unter windows nicht einfach auch mit (\abc\def) angeben?

  1. $localPath.'tmp/FISBoBGR_MapServer/Erfassung.xml';
  2. $localPath.'tmp\FISBoBGR_MapServer\Erfassung.xml';

Günni