如何为Windows和Linux平台定义DIRECTORY

如何为Windows和Linux平台定义DIRECTORY

本文介绍了如何为Windows和Linux平台定义DIRECTORY_SEPARATOR?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

现在我创建了一个小型PHP应用程序,在这里我使用文件路径存在问题,因为在Windows中使用此类型位置C:\Some\Location\index,但在Linux /www/app/index中使用,所以当我使用此/定义路径时,当应用程序使用时在窗口计算机中运行,此/应该是问题.

Now I create a small PHP Application, here I have problem for using file path, because in Windows use this type location C:\Some\Location\index but in Linux /www/app/index so when I define the path using this / but when the application run in window machine it should be problem for this /.

所以在这里我想定义Windows和Linux平台上的DIRECTORY_SEPARATOR.

So here I want to define the DIRECTORY_SEPARATOR both Windows and Linux platform.

推荐答案

PHP在所有操作系统中均接受\/作为有效路径分隔符.因此,只需在代码中使用/

PHP accepts both \ and / as valid path separators in all OS. So just use / in your code

这篇关于如何为Windows和Linux平台定义DIRECTORY_SEPARATOR?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 03:37