473,651 Members | 2,512 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What IDE are you using?

First of all, I'm an Asian and I need to input Japanese, Korean and so
on. I've tried many PHP IDEs today, but almost non of them supported
Unicode (UTF-8) file.

I've found that the only Unicode support IDEs are DreamWeaver 8 and
Zend PHP Studio.

DreamWeaver provides full support for Unicode. However, DreamWeaver is
a web editor rather than a PHP IDE. It only supports basic IntelliSense
(or code completion) and doesn't have anything like a class view.

Zend PHP Studio supports Unicode but have many problems. It couldn't
display Korean when I set a Japanese font for the editor, and couldn't
display Japanese when I set a Korean font for the editor. The most
obvious problem is it's too slow. It provides really good support for
coding like class view, debugging and advanced IntelliSense, but it's
too slow for my PC.

I think you're PHP professinals. What do you use for PHP development?
I'd like to hear from you. Thanks.

Oct 23 '05
121 10021
Gw
Currently I'm using a text editor (http://www.textpad.com being my
editor of choice) and that's been fine for the majority of projects
I've worked on, but I do miss the convenience of a powerful IDE like
DevStudio.

PHPEd from NuSphere (http://www.nusphere.com/) looks pretty good -
built in debugger, profiler, SOAP client and stuff. The trial version
is sitting on my computer, I just haven't had time to look at it yet.
Has anyone used it, and what do they think?

Cheers

Gwaredd
http://red-dawg.co.uk

Oct 24 '05 #11
Using Zend Studio at the moment. IMO opinion there's nothing out there
other then Zend and perhaps NuSphere (which I haven't tried)for large
scale PHP development.

And anyone that stated in this thread that they don't need anything more
then textpad, obviously have not worked on a large scale PHP project.
When you have multiple people if not teams working on the same project,
its a bloody pain in the ass to have to look up what some tool, in some
other department called a fanction and what parameters it takes.

Thats only the start, IDEs (Zend) in this case provide me with several
other features:

1) Debugger, this is a must, being able to view objects / array /
variables run time, cuts down development time by at least 50% (probably
more). Instead of having to print_r() every second line to find out
whats going on.

2) Integratted PHPDoc, those of you who came out with guns blazing
saying TextPad is all I need ra.. ra.. ra.. May not have the use for it,
but my team and I certainly do.

Integrated CVS, FTP, SFTP, Database browser, Table Browser (for most
db's including oracle 10g), Code analyser, profiler, watches,
breakpoints, projects, auto indentatio.

Thats just a few of the features that come to mind, yes Zend support is
really terrible... I mean really bad. But as far as large scale PHP
development goes you can't go past it. Yes, I understand that people
strugle with change, but you are prooving nothing to me saying that you
can do it all with TextPad. I used to be in the same shoes, sure you can
do it with TextPad, its only going to take you alot more time.
ty*******@gmail .com wrote:
First of all, I'm an Asian and I need to input Japanese, Korean and so
on. I've tried many PHP IDEs today, but almost non of them supported
Unicode (UTF-8) file.

I've found that the only Unicode support IDEs are DreamWeaver 8 and
Zend PHP Studio.

DreamWeaver provides full support for Unicode. However, DreamWeaver is
a web editor rather than a PHP IDE. It only supports basic IntelliSense
(or code completion) and doesn't have anything like a class view.

Zend PHP Studio supports Unicode but have many problems. It couldn't
display Korean when I set a Japanese font for the editor, and couldn't
display Japanese when I set a Korean font for the editor. The most
obvious problem is it's too slow. It provides really good support for
coding like class view, debugging and advanced IntelliSense, but it's
too slow for my PC.

I think you're PHP professinals. What do you use for PHP development?
I'd like to hear from you. Thanks.

Oct 24 '05 #12
Ramon wrote:
Using Zend Studio at the moment. IMO opinion there's nothing out there
other then Zend and perhaps NuSphere (which I haven't tried)for large
scale PHP development.

And anyone that stated in this thread that they don't need anything more
then textpad, obviously have not worked on a large scale PHP project.
When you have multiple people if not teams working on the same project,
its a bloody pain in the ass to have to look up what some tool, in some
other department called a fanction and what parameters it takes.

Please don't tell me what I have or have not worked on. I have been on
a couple of very large PHP projects, probably much larger than anything
you've been on (50+ programmers, several hundred K LOC).

No, it's NOT hard to determine what other departments have done. It's
called DOCUMENTATION.
Thats only the start, IDEs (Zend) in this case provide me with several
other features:

1) Debugger, this is a must, being able to view objects / array /
variables run time, cuts down development time by at least 50% (probably
more). Instead of having to print_r() every second line to find out
whats going on.

2) Integratted PHPDoc, those of you who came out with guns blazing
saying TextPad is all I need ra.. ra.. ra.. May not have the use for it,
but my team and I certainly do.

Integrated CVS, FTP, SFTP, Database browser, Table Browser (for most
db's including oracle 10g), Code analyser, profiler, watches,
breakpoints, projects, auto indentatio.

Thats just a few of the features that come to mind, yes Zend support is
really terrible... I mean really bad. But as far as large scale PHP
development goes you can't go past it. Yes, I understand that people
strugle with change, but you are prooving nothing to me saying that you
can do it all with TextPad. I used to be in the same shoes, sure you can
do it with TextPad, its only going to take you alot more time.


Sure, Zend has some advantages. Some or the people on the projects used
it. Others didn't.

I don't object to change. I tried Zend. The debugger is great. But
the IDE was too slow and limiting.

I'm not saying Zend or other IDE's are bad. They aren't. But what
works for one person does not work for every person. I work much faster
with a text editor than when using Zend. And most of our most
experienced programmers found the same. The newer programmers were more
likely to use Zend or some other IDE.

Interestingly enough, it was the most experienced programmers with their
text editors who invariably had the highest production and fewest errors.
--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Oct 24 '05 #13
ty*******@gmail .com wrote:
So you don't use an IDE but just a text editor?
I use XEmacs...
Well, many computer gurus did like that in the past, but doesn't it
take too much time for a novice like to remember all the members and
functions or look them up in the manual?
That's why god invented the web! ;-)

One window in XEmacs, one in Firefox at http://php.net... And one OS to
bind them all... :-)
I think code completion and class view really helps people like me.


That might be nice but it doesn't beat dabbrev mode where one can not
only code complete function names but anything like variable names, etc.
Oct 24 '05 #14
Oli Filth wrote:
True, but OTOH, code completion makes people lazy. Text editors force
you to remember functions, which I think is a benefit.
Are you serious?? ;)

Where's the benefit in having to remember the exact syntax for
hundreds/thousands of functions?


Of what benefit is there to be using functions that you don't know
intimately?!?

Perhaps it's clearest benefit is the realization that any such library
that has hundreds/thousands of functions is way to complex to be using!
That's just a massive pain in the arse, and surely must slow you down
considerably, especially when you only find you made a mistake at
run-time... You might as well be programming in assembler if you like
it raw! :)
Assembler would be quicker! Running that is. And yes some people still
program in assembler. http://grc.com/smgassembly.htm
Admittedly, the benefit of class-views etc. must be somewhat limited
for a dynamically-typed language like PHP. But in strongly-typed
languages like C++, C# or Java that have *massive* APIs, intellisense
and class-views etc. are an absolute god-send.

IMO, being a good programmer is not about knowing the fine details of
the language syntax; syntax is just a means to an end.


Being a good programmer is understanding the nature and workings of the
code you write and the code you use.
Oct 24 '05 #15
On 23 Oct 2005 09:00:05 -0700, ty*******@gmail .com top posted like a
newbie and wrote:
So you don't use an IDE but just a text editor? Well, many computer
gurus did like that in the past, but doesn't it take too much time for
a novice like to remember all the members and functions or look them up
in the manual? I think code completion and class view really helps
people like me.


If by "people like me" you mean people who really don't want to take
the time to learn, then yeah, it helps. You're relying on whomever
wrote the code completion to "know what you meant to do". Hardly a
good thing.

--
gburnore at DataBasix dot Com
---------------------------------------------------------------------------
How you look depends on where you go.
---------------------------------------------------------------------------
Gary L. Burnore | ÝÛ³ºÝ³Þ³ºÝ³³ÝÛº ݳ޳ºÝ³Ý³Þ³ºÝ³Ý ÝÛ³
| ÝÛ³ºÝ³Þ³ºÝ³³ÝÛº ݳ޳ºÝ³Ý³Þ³ºÝ³Ý ÝÛ³
Official .sig, Accept no substitutes. | ÝÛ³ºÝ³Þ³ºÝ³³ÝÛº ݳ޳ºÝ³Ý³Þ³ºÝ³Ý ÝÛ³
| ÝÛ 0 1 7 2 3 / Ý³Þ 3 7 4 9 3 0 Û³
Black Helicopter Repair Services, Ltd.| Official Proof of Purchase
=============== =============== =============== =============== ===============
Oct 24 '05 #16
I recommend PHPDesigner 2005, and it's free.
http://www.mpsoftware.dk/
On 23 Oct 2005 02:32:48 -0700, ty*******@gmail .com wrote:
First of all, I'm an Asian and I need to input Japanese, Korean and so
on. I've tried many PHP IDEs today, but almost non of them supported
Unicode (UTF-8) file.

I've found that the only Unicode support IDEs are DreamWeaver 8 and
Zend PHP Studio.

DreamWeaver provides full support for Unicode. However, DreamWeaver is
a web editor rather than a PHP IDE. It only supports basic IntelliSense
(or code completion) and doesn't have anything like a class view.

Zend PHP Studio supports Unicode but have many problems. It couldn't
display Korean when I set a Japanese font for the editor, and couldn't
display Japanese when I set a Korean font for the editor. The most
obvious problem is it's too slow. It provides really good support for
coding like class view, debugging and advanced IntelliSense, but it's
too slow for my PC.

I think you're PHP professinals. What do you use for PHP development?
I'd like to hear from you. Thanks.

Oct 24 '05 #17
Oli Filth wrote:
Janwillem Borleffs said the following on 23/10/2005 17:06:
ty*******@gmail .com wrote:
So you don't use an IDE but just a text editor? Well, many computer
gurus did like that in the past, but doesn't it take too much time for
a novice like to remember all the members and functions or look them
up in the manual? I think code completion and class view really helps
people like me.
True, but OTOH, code completion makes people lazy. Text editors force
you to remember functions, which I think is a benefit.


Are you serious?? ;)

Where's the benefit in having to remember the exact syntax for
hundreds/thousands of functions?


I for one have used a text editor for PHP coding for the better part of
5 years now. Recently, I started using Zend Studio. Sure all the code
completion and such is nice and *might* save you time when you are using
functions that aren't part of your daily routine, but if you have only
ever used IDEs and not memorized function names, syntax and return
cases, where would you be when you notice that something is very bad on
your site and you don't have access to your computer (or any computer)
with the IDE installed? I find that having had to memorize most of the
common functions and syntax has helped me tremendously for speed as well
as being able to handle a crisis if needed.
That's just a massive pain in the arse, and surely must slow you down
considerably, especially when you only find you made a mistake at
run-time... You might as well be programming in assembler if you like it
raw! :)
That's a stretch... it may be a pain for some, but anyone who started
programming C with vi knows what it is like. Assembler isn't even a
comparison to these top-level languages - especially when you're talking
perl and/or php where most of the function names document the code by
themselves...
Admittedly, the benefit of class-views etc. must be somewhat limited for
a dynamically-typed language like PHP. But in strongly-typed languages
like C++, C# or Java that have *massive* APIs, intellisense and
class-views etc. are an absolute god-send.
I find the class views (as in ZDE) to be great! I don't use them all the
time, but when I can look into one of my classes from long ago with a
class view and know exactly what type of value is returned without
searching the code itself... words can't explain.

That said, the decision to use an IDE or text editor for PHP completely
depends on the type of programmer you are. There are pros and cons for
both, and it is up to the developer to decide which route to go. I think
that this is a strength for languages like PHP 9or perl, c, Java, etc.)
- you don't have to have a specific IDE or route to develop your
application...

When's the last time you tried to create a VisualBasic project with a
text editor? How many times did you want to open a VB project in a text
editor to make a simple little change? Maybe not many in this group, but
I for one...
IMO, being a good programmer is not about knowing the fine details of
the language syntax; syntax is just a means to an end.


I wish I could remember who, but there was a quote that goes something
like: "Any monkey can be taught to learn a programming language - it's
just syntax. However, show me one monkey that has been taught
programming logic, and I'll give you a billion dollars."

--
Justin Koivisto, ZCE - ju****@koivi.co m
http://koivi.com
Oct 24 '05 #18
Justin Koivisto said the following on 24/10/2005 22:54:
Oli Filth wrote:
Janwillem Borleffs said the following on 23/10/2005 17:06:
True, but OTOH, code completion makes people lazy. Text editors force
you to remember functions, which I think is a benefit.


Are you serious?? ;)

Where's the benefit in having to remember the exact syntax for
hundreds/thousands of functions?


Sure all the code
completion and such is nice and *might* save you time when you are using
functions that aren't part of your daily routine, but if you have only
ever used IDEs and not memorized function names, syntax and return
cases, where would you be when you notice that something is very bad on
your site and you don't have access to your computer (or any computer)
with the IDE installed? I find that having had to memorize most of the
common functions and syntax has helped me tremendously for speed as well
as being able to handle a crisis if needed.


I see your point, but that only applies for interpreted/script-based
languages like PHP, VBScript, etc. For anything that requires a compiler
(e.g. C), the point is moot...
You might as well be programming in assembler if you like it raw! :)


That's a stretch... it may be a pain for some, but anyone who started
programming C with vi knows what it is like. Assembler isn't even a
comparison to these top-level languages - especially when you're talking
perl and/or php where most of the function names document the code by
themselves...


Yup, I was taking it to the logical extreme, I know! My point was along
the lines of "why forego modern technology that's there to make your
life easier?".
--
Oli
Oct 24 '05 #19
Andrew DeFaria said the following on 24/10/2005 22:15:
Oli Filth wrote:
True, but OTOH, code completion makes people lazy. Text editors force
you to remember functions, which I think is a benefit.

Are you serious?? ;)

Where's the benefit in having to remember the exact syntax for
hundreds/thousands of functions?

Of what benefit is there to be using functions that you don't know
intimately?!?


Sure, you should know what they do and what you're trying to achieve by
using them, but knowing whether it's xml_parser_crea te() or
XmlParserCreate () or xmlParserCreate () (or equally, whether it's
strstr($needle, $haystack) or strstr($haystac k, $needle)) is nothing but
an exercise in trivia.

Of course, you can flick to the online manual and find out, but that
must be at least 20 times slower (not to mention disruptive to the
coding "flow") than simply typing the first few letters into an IDE and
then pressing Tab for auto-complete (or the equivalent).

Perhaps it's clearest benefit is the realization that any such library
that has hundreds/thousands of functions is way to complex to be using!


Unfortunately, most APIs are necessarily complex...

You might as well be programming in assembler if you like it raw! :)


Assembler would be quicker! Running that is. And yes some people still
program in assembler. http://grc.com/smgassembly.htm


Yup, I still do too ;) But only for embedded stuff.
--
Oli
Oct 24 '05 #20

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

Similar topics

92
6441
by: Reed L. O'Brien | last post by:
I see rotor was removed for 2.4 and the docs say use an AES module provided separately... Is there a standard module that works alike or an AES module that works alike but with better encryption? cheers, reed
12
11145
by: Dario | last post by:
The following simple program behaves differently in Windows and Linux . #include <stdexcept> #include <iostream> #include <string> using namespace std; class LogicError : public logic_error { public: string desc;
125
14702
by: Sarah Tanembaum | last post by:
Beside its an opensource and supported by community, what's the fundamental differences between PostgreSQL and those high-price commercial database (and some are bloated such as Oracle) from software giant such as Microsoft SQL Server, Oracle, and Sybase? Is PostgreSQL reliable enough to be used for high-end commercial application? Thanks
44
4199
by: lester | last post by:
a pre-beginner's question: what is the pros and cons of .net, compared to ++ I am wondering what can I get if I continue to learn C# after I have learned C --> C++ --> C# ?? I think there must be many know the answer here. thanks
9
2290
by: John Cho | last post by:
// CHO, JOHN #include<iostream> class fracpri{ int whole; int numer; int denom;
12
3290
by: Steven T. Hatton | last post by:
This is something I've been looking at because it is central to a currently broken part of the KDevelop new application wizard. I'm not complaining about it being broken, It's a CVS images. Such things happen. The whole subsystem is going through radical changes. I don't really want to say what I think of the code just yet. That would influence the opinions of others, and I really want to know how other people view these things,...
9
2816
by: Rajat Tandon | last post by:
Hello there, I am relatively new to the newsgroups and C#. I have never been disappointed with the groups and always got the prompt replies to my queries.This is yet another strange issue, I am facing. Please please help me to solve this as soon as possible. So here we go ... I am not able to take the screen shot of the windows form based "Smart
13
5035
by: Jason Huang | last post by:
Hi, Would someone explain the following coding more detail for me? What's the ( ) for? CurrentText = (TextBox)e.Item.Cells.Controls; Thanks. Jason
0
1192
by: andy6 via DotNetMonster.com | last post by:
I want to display a webpage. The user selects a value from a drop down. This value is put into a custom header and added to the http pipeline. Then the page is redirected in the EndRequest method to where I need to go. What works: the dll, the web.config of the module, the addition of the header and value to the pipeline, redirection to other website and receiving value (null) on the other website What doesn't work: Allowing the user...
0
8352
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
8275
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8802
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
8697
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
8465
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,...
1
6158
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4283
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2699
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
1
1909
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.