コード例 #1
0
 /**
  * Returns a correct set of slashes for given $path. (\\ for Windows paths and / for other paths.)
  *
  * @param string $path Path to check
  * @return string Set of slashes ("\\" or "/")
  * @access public
  * @static
  */
 function correctSlashFor($path)
 {
     return GummFolder::isWindowsPath($path) ? '\\' : '/';
 }