473,811 Members | 3,736 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

POLL: Which IDE do you use to develop PHP?

Hi group,

Just curious what IDEs are popular nowadays.

What do you expect from an IDE?
Debugging?
Do you use your IDE for debugging, or do you work like me? (Just use some
smart-placed var_dump() to dive into possible problems?)

Syntax highlightning?
Anything else?

I use Eclipse 2.1 with PHP-plugin.
Reason: It is for free and works fine.

Regards,
Erwin Moller
Jul 17 '05
30 2573
Edit with UltraEdit or Eclipse, save locally or through Samba, run on
Apache with php4 (Linux) or 5 (windows), test UI through IE6 and
FireFox, search with phpPeanuts hypercode browsers. Als use pnt/unit,
debug info and skin generation from phpPeanuts framework.

Greetings,

Henk Verhoeven,
www.phpPeanuts.org, www.metaclass.nl.

Erwin Moller wrote:
Hi group,

Just curious what IDEs are popular nowadays.

What do you expect from an IDE?
Debugging?
Do you use your IDE for debugging, or do you work like me? (Just use some
smart-placed var_dump() to dive into possible problems?)

Syntax highlightning?
Anything else?

I use Eclipse 2.1 with PHP-plugin.
Reason: It is for free and works fine.

Regards,
Erwin Moller

Jul 17 '05 #21
Erwin Moller wrote:
Hi group,
(chorus:) Hi Erwin
I mostly use SciTE (Scintilla), but also got Crimson and HTML-kit which
I use occasionaly.

I favour SciTE because it is very lightweight, but at the same time
extreemely versatile. (http://www.scintilla.org/)

What do you expect from an IDE?
fast, good(*) text editing, syntax highlighting, project management.

(*): "good", beyond just copy/paste/search/replace features (e.g.
macrolanguage, wordcompletion, codetemplates, ...). Whatever makes life
easier.
Debugging?
(personal rant) Analyse complex segments beforehand, and do your
errorhandling and a debugger is rarely (if ever) needed.

Admittedly there have been occasions, where I wished I had one.
Do you use your IDE for debugging, or do you work like me? (Just use some
smart-placed var_dump() to dive into possible problems?)


I do the same. But if I had an IDE with debugging capabilities I would
probably use and appreciate it.
/Bent
Jul 17 '05 #22
Erwin Moller wrote:
Hi group,


Hi. Thanks for this thread :)

I always love threads like this, because it gives me a lot of
alternatives for my never-ending search for a new editor. I've been
using Homesite for ages, which is the only one I've felt comfortable
with, mostly due to it's vastly underrated highlighting for PHP. But
it's getting outdated, and newer functions and reserved words aren't
highlighted. And on top of that, it's a Windows only program, and since
I spend as much time in Linux as I do in Windows, I'd like to have a
crossplatform editor (or at the very least an editor with versions for
both platforms).

So - I'm using Homesite, which is more a HTML editor than a PHP editor,
but it has very nice highlighting which is all I require. Debugging is
achieved through my superefficient ultra-advanced debugging-functions:

function print_a($x) {
echo "<pre>";
print_r($x);
echo "</pre>";
}
function print_x($x) {
print_a($x);
exit();
}

:D

I have a server on my LAN, so I have all my projects on that server and
connect through SMB or FTP/SFTP, so I have no need for any debugging
within the editor itself.

But yea, great thread, and lots of great tips. I've started to get a bit
comfortable with jEdit after seeing it mentioned in this thread - only
thing I don't like about it is the toolbar icons ;)

I also downloaded and tried PHPEdit, and one great thing about that is
the possibility to define a separate colour for variables within
strings, which can be very handy at times. But the lack of a
Linux-version means I won't be using that, but still a very nice editor
for Windows, and free for non-commercial use isn't half bad, though I do
prefer opensource. Being unemployed means I can't afford to buy any
editor, but there are so many free ones out there it really isn't a
problem. Once I can get someone to start paying me to develop I'll
probably get my hands on Zend Studio, but for now I'll be moving to jEdit :)

Roy W. Andersen
--
ra at broadpark dot no / http://roy.netgoth.org/

"Hey! What kind of party is this? There's no booze
and only one hooker!" - Bender, Futurama
Jul 17 '05 #23
"Erwin Moller"
<si************ *************** *************** @spamyourself.c om> wrote in
message news:41******** **************@ news.xs4all.nl. ..
Hi group,

Just curious what IDEs are popular nowadays.

What do you expect from an IDE?
Debugging?
Do you use your IDE for debugging, or do you work like me? (Just use some
smart-placed var_dump() to dive into possible problems?)

Syntax highlightning?
Anything else?

I use Eclipse 2.1 with PHP-plugin.
Reason: It is for free and works fine.

Regards,
Erwin Moller


Textpad in Windows, emacs in Linux/Unix.
Jul 17 '05 #24
Visual InterDev 1.0 (just the text editor), Notepad, or--most
recently--UltraEdit.

--
Transpose hotmail and mxsmanic in my e-mail address to reach me directly.
Jul 17 '05 #25
Erwin Moller wrote:

Just curious what IDEs are popular nowadays.


I use TextPad. IDEs just get in the way.

bblackmoor
2005-01-12
Jul 17 '05 #26
Erwin Moller wrote:
Hi group,

Just curious what IDEs are popular nowadays.
I use PHPEdit <http://www.waterproof. fr/products/PHPEdit/>.
Previously used DreamWeaver about 1% time. Now, having setup own form
generation tools and migrated to CSS container based designs, no need
to go for DW.
What do you expect from an IDE?
Mostly auto completion of PHP's functions and user functions. Also,
parameter hinting. Since I use lots of classes--mostly by include(), I
would expect auto completion of object names, methods, properties and
their parameters.

I would also expect smart quoting like "" for " and smart quoting
inside another quotes like "\"" for "". Paranthesis completion, etc.
All these features are available with PHPEdit.

One colorful feature I expect is OptiPerl's Box coding
<http://www.xarka.com/optiperl/features.html>--which none of the PHP
editors provide now.
Debugging?
Not much. There are less chances that I will make mistakes with
these features.
Do you use your IDE for debugging, or do you work like me? (Just use some smart-placed var_dump() to dive into possible problems?)


I save it and then run it in browser. Most of the time it will work.
But, in rare cases my custom error handler will spits out the error in
the browser with some valid information like type of error, error
context, line of error by highlighting and backtrace, etc.

So, my developing environment is
XP/TortoiseSVN/XAMPP/PHPEdit/Notepad(for Unicode)/Firefox/Immediate
Window (a PHP script which eval's submitted script)

--
<?php echo 'Just another PHP saint'; ?>
Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/

Jul 17 '05 #27
Sean writes:
I use Adobe GoLive. Albeit, all I use it for is so that I have a
syntax highlighting text editor that knows most web languages.


The same reason I've used Visual InterDev. But I discovered a few days
ago that highlighting text editors do exist, and I picked UltraEdit,
which seems to work very well (and also has a simple FTP capability that
is very handy).

--
Transpose hotmail and mxsmanic in my e-mail address to reach me directly.
Jul 17 '05 #28
It's interesting that almost everyone responding to this poll is using
nothing more than a text editor (or a fancy text editor at most).
Someone must be buying all those bloated IDEs out there; if it's not
hardcore Web developers, who is it?

I've always preferred to keep things simple, and it reassures me that
I'm not alone in this. HTML and its breathren were designed to be easy
to write and maintain with simple tools, so I've never understood why
anyone would drop hundreds of dollars on bloated front ends that hide
the real code (and may even make it inaccessible), complicate both
development and maintenance, and bloat the final Web pages so that they
execute a hundred times more slowly than if they were written in
Notepad.

--
Transpose hotmail and mxsmanic in my e-mail address to reach me directly.
Jul 17 '05 #29
he********@500m ghosting.com wrote:

Yes. For documentation, I've put a direct shortcut to the php.net
search engine, so I get all in need in one line.

If you are using a Linux for your dev work, you can mirror the PHP
manual on your PC itself. Create a virtual host and you have the
manual at your tips. Have a look at http://www.php.net/mirroring.php

--

Raj Shekhar
System Administrator, programmer and slacker
home : http://rajshekhar.net
blog : http://rajshekhar.net/blog/
work : http://netphotograph.com

Jul 17 '05 #30

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

Similar topics

10
3261
by: JDJones | last post by:
I'd like to put up two polls on my web site on a single page. I will be using a free remotely hosted poll service. That part is easy. But I want to remove the two individual <a href> links that have to be clicked to call the current results individually and replace them with a single link that will be used to call the results of both pages and display them at the same time, most likely in a table. Can PHP be used to do this? How would...
28
2403
by: Paul McGuire | last post by:
Well, after 3 days of open polling, the number of additional votes have dropped off pretty dramatically. Here are the results so far: Total voters: 55 (with 3 votes each) Votes for each choice or group of choices: Any J 81 J2 78 Any C 40 C1 29 Any D 9
9
4179
by: Lad | last post by:
Is there a poll script available in Python?
0
1320
by: Ivan Simurina | last post by:
Hello!!!, i really need help with something and i will appreciate your help alot! I plan to develop a quiz/poll project in C# that would contain these segments: User Related Matters: Register new user. (Sign up) Maintain user (Editing/Updating any information that user gave on signup) Administrative Related Matters: Creating & Maintaing User Roles. Assinging/Editing User Roles.
1
2583
by: Magnus Lycka | last post by:
I'm trying to read standard out in a process started with popen2 in a non-blocking way. (Other good ways of doing this than the one I tried are appreciated.) I've tried to dumb down my code to see what happens, and socket.poll seems to behave very strangely. I've tried to use the .poll method for the poll object with and without a timeout, but in either case, the output randomly switches between on of the versions below. It runs fast,...
0
2046
by: jinfeng_Wang | last post by:
I have writen the following souce code : m_Socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); m_Socket.Blocking = false; try { m_Socket.Connect(ipEndPoint); }
3
2883
by: bjkc1986 | last post by:
Hi Guys, I'm trying to develop an opinion poll on my website (Visual Studio 2005) using c# code and a MYSql db.I have created the db and the admin side of the project for adding new polls to the db and deleting polls but I dont know how I can re-create them for the main section of the website i.e converting the questions in the db, which are in text form, into radio boxes, and then storing the votes in the db and generating a graphical view....
2
2504
by: webcm123 | last post by:
I'm making some changes in poll module. I don't know which method of storing options of poll is better. The main data of polls are in POLLS table. Speed and efficiency is the most important issue. There are 2 methods: 1. Storing options in ANSWERS table and executing 2 queries to get poll's data and options. Number of records connected with a poll in that table is equal to number of poll's options.
4
17549
by: 7stud | last post by:
Hi, What is the difference between: 1) getting the returncode directly from the subprocess object 2) calling poll() on the subprocess object? Here is an example:
0
9731
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10651
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10393
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
10405
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
9208
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
6893
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
5556
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
5697
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3020
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.