What is the best development environment for PHP?
I use Notepad++ with Vibrant Ink style and Windows Explorer for ftp.
very amateurish
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I use Ubuntu on my development desktop, running Apache with the same setup on the server on which the code is deployed. Not having to upload code to a remote server to run it is really convenient! It made my workflow a lot more graceful when I started doing this. Just save the file and hit f5, and your changes are there instantly.
Kate is my favorite editor for Linux. Notepadd++ and Kate are similar, but I consider Kate to be better organized. I don’t think Kate is available for Windows, though.
Another editor I like is Komodo (that page is confusing, though – the editor is free, but they offer a commercial IDE as well). The handiest feature about Komodo, for me, is you can transparently edit remote files via ssh, so you don’t need to worry about uploading or anything.
Does Windows Explorer support sftp? Using the plain FTP protocol isn’t recommended, as it sends your authentication details (and all transfers) unencrypted. You may wish to get a program such as filezilla and start using sftp.
I wrote a small wrapper for scp so I can just upload files from the console, like
ssend newfile.php. It’s pretty convenient for when you’re just editing a couple of files.