Right now, I am using notepad2 to edit my PHP files. Do you have any
recommendations for any php editors I should purchase instead? I dont mind
spending some money for a good product.
I also have visual studio and I hear that there is an extension for VS for
php. Does anyone have any experience with this?
TIA
Nicolaas
vim
At the high end are the IDEs. These include:
Zend, enginsite editor for PHP, Macromedia Dreamweaver 8, Rapid PHP,
Eclipse (using a third-party plugin) and others.
Next we have syntax highlighting editors. These include:
vim, jedit, ultra-edit and others.
Finally, just the straight editors:
vi, emacs, wordpad, notepad, edit
Personally, I use Zend in my work because it supports the subversion
revision control software and I have a reasonable amount of memory on my
system (Zend uses Java which tends to love to eat memory, Eclipse uses
Java as well.) There are some usability issues I have (e.g.
auto-completion getting in the way, automatic maximizing of windows I
have closed) but they are not enough of a bother to make me move to
another editor.
-david-
Hmm, thank you for the answer.
The one thing I do not like is that it takes hours to install and that it
screws up everything else on my computer. However, I do like syntax checking
and I do like autocompletion.
WHat I would also really like is the ability to expand/implode functions.
That is, being able to implode a function and open it if needed. That sort
of thing.
I will have a look at the Zend business. Right now, I do not have PHP
installed locally, it that an issue? I like to load my files to the server
because then I only have one place I work at. Not many.
Thanks again
Nicolaas
Zend will do this.
> I will have a look at the Zend business. Right now, I do not have PHP
> installed locally, it that an issue? I like to load my files to the server
> because then I only have one place I work at. Not many.
Not having PHP locally will reduce the set of capabilities of the IDEs
since many use php to syntax check the code in near real time.
In the larger picture, if you use a revision control system such as CVS
or Subversion (with Tortoise on your windows box), then the issue of
'only one place to work at' becomes less important. Revision control
systems allow you to edit anywhere and then synchronize those edits
across all instances, so you can do some edits at work, add those to the
repository, head on home, synchronize with your home image, keep on
editing, synchronize with the repository, go back to work, synchronize
with the repository, and keep on editing until you remember that you
forgot to sleep ;-)
-david-
I use EditPad Pro. Pretty good editor for 40 bucks. Does syntax
highlighting, bracket matching, and so forth. No function or comment
collapsing though.
David Haynes wrote:
> Next we have syntax highlighting editors. These include:
> vim, jedit, ultra-edit and others.
Kate would be here. My editor of choice.
- --
- ----------------------------------
Iván Sánchez Ortega -i-punto-sanchez--arroba-mirame-punto-net
La eternidad es una de las raras virtudes de la literatura.
-- Adolfo Bioy Casares. Escritor argentino.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)
iD8DBQFDuuKC3jcQ2mg3Pc8RAge1AJsHXTgAU7H7UQwvaP3aFxzt5kyOTgCeOjoq
UGByUbQz9Snxpf6sPPkfE0c=
=bSoC
-----END PGP SIGNATURE-----
"code folding"
>> I will have a look at the Zend business. Right now, I do not have PHP
>> installed locally, it that an issue? I like to load my files to the
>> server because then I only have one place I work at. Not many.
>
> Not having PHP locally will reduce the set of capabilities of the IDEs
> since many use php to syntax check the code in near real time.
ZDE doesn't require php to be locally installed. If you want full
debugging abilities, you can use a remote debug server - otherwise, you
can "run" the scripts right through zde.
> In the larger picture, if you use a revision control system such as CVS
> or Subversion (with Tortoise on your windows box), then the issue of
> 'only one place to work at' becomes less important. Revision control
> systems allow you to edit anywhere and then synchronize those edits
> across all instances, so you can do some edits at work, add those to the
> repository, head on home, synchronize with your home image, keep on
> editing, synchronize with the repository, go back to work, synchronize
> with the repository, and keep on editing until you remember that you
> forgot to sleep ;-)
hmm... sounds like my "holidays" ;)
--
Justin Koivisto, ZCE - jus...@koivi.com
http://koivi.com
Who wants to be hardcoding include_path and using set_include_path()
when you'll probably have to undo the change, when you promote to your
host ??
I'd go back to Zend Studio, if they resolved that error. It really was
slick and could have been great for debugging.
Currently, I'm using EditPlus, which is cheap, has many features, only
missing a file-comparison tool (aka diff).
I second this class of development editor. I used to use Dreamweaver,
but stopped using that because I was no longer entitled to use it when
my previous employ ended. Then I switched to Notepad++ before coming
across Eclipse + PHPEclipse. Of all of them, I must say that Eclipse is
my favorite. I like the ability to have it tell you nearly anything in
real time. When you open the project up, it will flag everything that's
wrong nearly instantly, when you save the file, it will display a
refreshed copy in the browser (in Windows, I haven't got that
functionality working on my Linux development machine yet). And to top
it all off, Eclipse, since it's written in Java, works on Linux as well
as Windows (and I rather suspect other platforms). And it's freely
available.
So, I'd say that my vote goes to Eclipse. :)
- Mike
Notepad++ does this and much more.....
feo
"Rich" <ri...@newsguy.com> escribió en el mensaje
news:dper4...@drn.newsguy.com...
> In article <YPquf.12133$vH5.6...@news.xtra.co.nz>, windandwaves says...
> If I'm editing something on a Windows system I'll use TextPad, but mostly
> use vi
> when I can.
>
> Rich
> --
> Newsguy -- http://newsguy.com
>
Than you.
"softm m" <sof...@gmail.com> escribió en el mensaje
news:1136416922.2...@g14g2000cwa.googlegroups.com...
Thank you.
feo
"Krustov" <kru...@krustov.co.uk.INVALID> escribió en el mensaje
news:MPG.1e26684b8...@news.newsreader.com...
> <comp.lang.php , feo , noquier...@gmail.com>
> <dphjo1$a6t$1...@news.ya.com>
> <Wed, 4 Jan 2006 23:54:51 +0100>
>
>> Just me using Homesite?
>>
>
> No , I've v4.5 for years .
feo
"feo" <noquier...@gmail.com> escribió en el mensaje
news:dphlnt$k26$1...@news.ya.com...
Take a look at Scintilla SciTE... quick to install. Easy to
get to settings and easy to edit and configure such.
http://www.scintilla.org
http://scintilla.sourceforge.net/
> However, I like syntax checking and I like autocompletion.
There's some syntax highlighting, but I don't think there's
any syntax checking. The apostrophe and quote highlighting
is extremily helpful though, especially for writing webpage
code. If there's any autocompletion, I must have it turned
off.
> I want the ability to expand/implode functions. That is,
> implode a function and open it if needed.
That exists with SciTE (SCIntilla based Text Editor).
> I will have a look at the Zend business. Right now,
> I do not have PHP installed locally, is that an issue?
> I like to load my files to the server because then I
> only have one place I work at. Not many.
Hmm...
No problem with SciTE. Tested with FrontPage and
works well if you open a website with FrontPage and
load a document from the website into SciTE. I haven't
tried to run files locally through SciTE, but there seems
to be methods to configure some kind of Run/Compile/
etc for other languages... calling an external process. I
end up keeping the page open in two browser windows,
ie, IE browser and FireFox browser.
Hope this helps.
Jim Carlock
Post replies to the newsgroup.
Only prob is thers no replace or find, basic funtions from notepad and
all.
There are heaps of free editors out on the net, u dont have to buy
anything
The Zeus for Windows IDE has support for PHP:
http://www.zeusedit.com/features.html
It will code fold and syntax highlight PHP code. It also
has features like project/workspace mangement, ftp editing
and class browsing.
> I dont mind spending some money for a good product.
http://www.zeusedit.com/forum/viewtopic.php?t=10
Zeus is shareware and offers a 45 day fully functional
trial period.
Jussi Jumppanen
Author of: Zeus for Windows
Notepad++ does have all the basic functions like replace and find..