在MS上创建的php应用程序在Linux上运行时可能会出现问题?

i'm new to PHP, developing scripts on Windows (WAMP)

Is there anything should i do before uploading files to Linux Server?

I use UTF-8 as charset. Does line-endings matters? Should i choose unix file ending when writing scripts on MS Windows?

In linux the directory separator is /.

In windows both / and \ can be used.

Linux is case sensitive too. These are the two things to be noted.

Be careful in function and variable names , linux is case sensitive , Windows - not . For example $test and $Test is same on windows , and various on linux system