473,769 Members | 3,350 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Best IDE for PHP...?

What is the best IDE for developing PHP applications?
What do you use and why?
Thanks.
Jul 16 '05
33 9872
uws wrote:
What about VIM [1]? It's a very powerful, open-source, free, moded editor.

mvrgr, Wouter

[1] http://www.vim.org/


I second that!

Once you get used to it, you'll find VIM is a great editor.
I use it on Linux (and Windows).

On Linux, I also use KATE, (and on Windows, UltraEdit).

And despite the ongoing debate between VI(M) & EMACS users (about which
is the best editor), I also like (X)EMACS...

The advantage of all these editors, is that you can use them for any
number of languages, which is something I need, since I use C, C++, PHP,
Java, Python, Perl, Clean, Bash, and maybe even more languages ....

But of course, that's just my opinion...

Regards,
Felix

--
the QuiX project
Open Source software

E-Mail: qu**@free.fr
Web: http://www.quix.tk/

Jul 16 '05 #21
> Okay, let's see how this holy war's doing...

Bruno


Your Favorite Editor Sucks! (TM) :)

And no, I don't like emacs. I don't have anything particularly against
it, I just never got the hang of the keyboard shortcuts. I much prefer
vi. Vim is nice, but good ol' vi is all I really need to do anything :)
Jul 16 '05 #22
With total disregard for any kind of safety measures Brandon
Blackmoor <bb********@spa mcop.net> leapt forth and uttered:
steffen horst wrote:

i don't know textpad. why is it better?


You will have to answer that for yourself:
http://www.textpad.com/


You know, it doesn't really matter as none of the above are IDE's.
They're just text editors.

--
There is no signature.....
Jul 16 '05 #23
On Mon, 14 Jul 2003 14:51:16 +0200, uws wrote:
I <Xn************ *************@2 06.127.4.21>, Phil Roberts skrev:
With total disregard for any kind of safety measures Brandon Blackmoor
<bb********@spa mcop.net> leapt forth and uttered:
steffen horst wrote:
i don't know textpad. why is it better?
You will have to answer that for yourself: http://www.textpad.com/

You know, it doesn't really matter as none of the above are IDE's.
They're just text editors.


That's not totally true. For instance, VIM can deal correctly with
makefiles, compilers and code formatters.


IMO the most important feature of an IDE is debugging (step etc.). I
practically live in Vim, but alas, it won't do this :-\
Jul 16 '05 #24
Jules Alberts wrote:
On Mon, 14 Jul 2003 14:51:16 +0200, uws wrote:

I <Xn************ *************@2 06.127.4.21>, Phil Roberts skrev:
(snip)
You know, it doesn't really matter as none of the above are IDE's.
They're just text editors.


That's not totally true. For instance, VIM can deal correctly with
makefiles, compilers and code formatters.

IMO the most important feature of an IDE is debugging (step etc.). I
practically live in Vim, but alas, it won't do this :-\


IMHO, debugging is the most important feature of a debugger !-)

Bruno

Jul 16 '05 #25
Code without bugs and you won't need a debugger ;) Structure your code
well, think about it a few times, keep expressions and operations
simple. If you do the above and take your time to code, you won't need a
debugger so much. Of course, code is ready in a little more time, but
you reduce by a lot the debugging time and you might even get less
trouble when time to maintain come.

Bruno Desthuilliers wrote:
Jules Alberts wrote:
On Mon, 14 Jul 2003 14:51:16 +0200, uws wrote:

I <Xn************ *************@2 06.127.4.21>, Phil Roberts skrev:
(snip)
You know, it doesn't really matter as none of the above are IDE's.
They're just text editors.
That's not totally true. For instance, VIM can deal correctly with
makefiles, compilers and code formatters.


IMO the most important feature of an IDE is debugging (step etc.). I
practically live in Vim, but alas, it won't do this :-\

IMHO, debugging is the most important feature of a debugger !-)

Bruno


Jul 16 '05 #26
I have been very comfortable using VIM. One thing that I could reccomend as an alternative to an external debugger is to write a set of functions that you can call from within your PHP scripts when starting new sections of code.

I wrote a set of logger functions that output to a text file on the server. If something wierd happens while I am testing some new PHP code I can watch how it happens by reading the text file. If in the future I finish getting the functions to output to the syslog interface I will be able to do

tail --follow /var/log/messages

to watch the code in action.

-Jonathan

On Mon, 14 Jul 2003 14:51:16 +0200
uws <uw*@xs4all.inv alid> wrote:
I <Xn************ *************@2 06.127.4.21>, Phil Roberts skrev:
With total disregard for any kind of safety measures Brandon
Blackmoor <bb********@spa mcop.net> leapt forth and uttered:
steffen horst wrote:
i don't know textpad. why is it better?
You will have to answer that for yourself:
http://www.textpad.com/

You know, it doesn't really matter as none of the above are IDE's.
They're just text editors.


That's not totally true. For instance, VIM can deal correctly with
makefiles, compilers and code formatters.

mvrgr, Wouter

--
uws mail uw*@xs4all.nl

you're the mixed up girl that everybody leaves behind -- our lady peace

Jul 16 '05 #27

I am using anyedit and it is working pretty well for me. Line numbering,
multiple documents accessible via tabs, fast, and free, what else do you
need? I remapped all of my file types (html, php, inc, txt) to anyedit.

http://www.anyedit.org/

B44CCD21

"Phil Roberts" <ph*****@HOLYfl atnetSHIT.net> wrote in message
news:Xn******** *************** **@206.127.4.21 ...
With total disregard for any kind of safety measures Brandon
Blackmoor <bb********@spa mcop.net> leapt forth and uttered:
steffen horst wrote:

i don't know textpad. why is it better?


You will have to answer that for yourself:
http://www.textpad.com/

Jul 16 '05 #28
Louis-Philippe Huberdeau wrote:

(please dont top-post - corrected)

Bruno Desthuilliers wrote:
Jules Alberts wrote:
On Mon, 14 Jul 2003 14:51:16 +0200, uws wrote:
I <Xn************ *************@2 06.127.4.21>, Phil Roberts skrev:
(snip)
> You know, it doesn't really matter as none of the above are IDE's.
> They're just text editors.

That's not totally true. For instance, VIM can deal correctly with
makefiles, compilers and code formatters.


IMO the most important feature of an IDE is debugging (step etc.). I
practically live in Vim, but alas, it won't do this :-\


IMHO, debugging is the most important feature of a debugger !-)

Code without bugs and you won't need a debugger ;) Structure your code
well, think about it a few times, keep expressions and operations
simple. If you do the above and take your time to code, you won't need a
debugger so much. Of course, code is ready in a little more time, but
you reduce by a lot the debugging time and you might even get less
trouble when time to maintain come.


I guess you're not answering to the right person !-)

It may not have been clear, but was I was trying to express is that a
debugger, how useful it can be in some situations, is certainly not the
most essential tool for a developer.

Now, your advices are all really good, and I'd just had 'unit test' to
it. But still it won't make 100% bug free code...

my 2 cents...
Bruno

Jul 16 '05 #29
Joshua Ghiloni wrote:
Okay, let's see how this holy war's doing...

Bruno

Your Favorite Editor Sucks! (TM) :)


Anything has got to be better than a card punch. Not even emacs has a
function to randomly shuffle your lines of code like dropping a process
pack (at least I don't think so).

Editing programs on tape was interesting as well. Pass me the razor
blade will you?
Jul 16 '05 #30

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
2237
by: John J | last post by:
I've written the following code into a class to search for and display the results of all races entered (The complete code is in a previous thread). I wish to amend the code so as to display the best result only. Can anyone suggest a simple amendment to the following that will result in only the best result being displayed?
136
9447
by: Matt Kruse | last post by:
http://www.JavascriptToolbox.com/bestpractices/ I started writing this up as a guide for some people who were looking for general tips on how to do things the 'right way' with Javascript. Their code was littered with document.all and eval, for example, and I wanted to create a practical list of best practices that they could easily put to use. The above URL is version 1.0 (draft) that resulted. IMO, it is not a replacement for the FAQ,...
20
11326
by: hagai26 | last post by:
I am looking for the best and efficient way to replace the first word in a str, like this: "aa to become" -> "/aa/ to become" I know I can use spilt and than join them but I can also use regular expressions and I sure there is a lot ways, but I need realy efficient one
3
4004
by: Irene | last post by:
Hi all, I have set up a simple VB program (and later on an ASP interface) to manage an Athletics database. I'm using Access 2000. To simplify, I have the Athlets, the Competitions and the Scores tables. When I want to list of the best scores/ranking, I just do:
5
1813
by: l.woods | last post by:
I want your recommendation on which ASP.NET Shopping Cart software I should buy? Best code Best documentation Best support (if needed. I will buying source code, if possible) TIA, Larry Woods
10
3482
by: jojobar | last post by:
Hello, I am trying to use vs.net 2005 to migrate a project originally in vs.net 2003. I started with creation of a "web site", and then created folders for each component of the site. I read somewhere that each folder under the "web site" is compiled in separate assembly. I however, did not find that the "web site" creation in vs.net 2005 created any AssemblyInfo.cs file.
10
3003
by: Ren | last post by:
Hi All, I'm still rather new at vb.net and would like to know the proper way to access private varibables in a class. Do I access the variable directly or do I use the public property? public class MyClass private _variableName as integer public property VariableName as integer
4
1841
by: Ned Balzer | last post by:
Hi all, I am pretty new to asp.net; I've done lots of classic asp, but am just beginning to get my mind wrapped around .net. What I'd like to do is include some code that tests if a user is logged in, on each and every page, and redirects the user to a login page if s/he's not logged in. The login page will also take care of some standard setup, such as choosing/populating a user profile. I used to use <!-- #include ... --for this,...
24
2198
by: Earl | last post by:
I have all of my data operations in a separate library, so I'm looking for what might be termed "best practices" on a return type from those classes. For example, let's say I send an update from the UI layer to a method in a library class that calls the stored procedure. Best to return a boolean indicating success/failure, return a string with the exception message, or just return the entire exception?
11
4703
by: ankitmathur | last post by:
Hi, I'm trying to overcome a situation whereby I have to search through 4-5 columns and produce the results with an order by according to the values matched in these columns. Example: My Table Structure: Create Table TestPfx
0
10051
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10000
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9866
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8879
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5310
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5448
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3968
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3571
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.