Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 PHP 新手,在 Windows 上开发脚本(WAMP)
在将文件上传到 Linux 服务器之前我应该做什么?
我使用 UTF-8 作为字符集。行尾重要吗?在 MS Windows 上编写脚本时我应该选择 unix 文件结尾吗?
注意函数名和变量名,Linux 区分大小写,Windows 不区分。例如 $test 和 $Test 在 windows 上是一样的,在 linux 系统上是不同的
在linux目录分隔符是/.
linux
/
在windows中两者/都\可以使用。
\
Linux也区分大小写。这是需要注意的两点。
Linux