473,383 Members | 1,997 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

IDE for PHP

16 1452
Water Cooler v2 wrote:
?


http://wtf-php.notlong.com/ide

--
/Bent
Jun 17 '06 #2
Water Cooler v2 wrote:
?


I'm using EditPlus http://editplus.com/
However, I have head about Zend Studio for many times and even using it
from time to time, but it is too big for most of my tasks.

Sincerelly,
Alexander
http://www.alexatnet.com/

Jun 17 '06 #3
Thanks. :-)

Jun 17 '06 #4

Gary L. Burnore wrote:
On 17 Jun 2006 16:36:43 -0700, "Water Cooler v2" <wt*****@yahoo.com>
wrote:
Thanks. :-)


You might also check out Komodo. (and work on leaving the bit that
you're replying to when posting instead of snipping it all.)

--
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 74 9 3 0 Û³
Black Helicopter Repair Services, Ltd.| Official Proof of Purchase
================================================== =========================



Do any of the IDE's offer Intellisense?

Jun 17 '06 #5

Gary L. Burnore wrote:
You might also check out Komodo. (and work on leaving the bit that
you're replying to when posting instead of snipping it all.)

Do any of the IDE's offer Intellisense?


If you mean do they point out mistakes, yes, most do. If that's not
what you meant, what's Intellisense?

(better quoting, but not quite. Remember to snip .sigs and that to
which you are not replying)


By Intellisense, I mean:

1. When you type fopen(.., it opens up a pop-up window in the editor
showing you the signature of the function.

2. If you've defined a class and some methods, when you instantiate
that class, it knows the type of the object, so when you do a

MyClass $obj = new MyClass('arg');
$obj->

it shows the pop-up again with the members and the public interface of
the class MyClass.

3. While typing mysql_conne and then some short-cut keyboard key, it
completes the token and replaces it with mysql_connect.
Does any IDE offer such features?

Jun 18 '06 #6
Gary L. Burnore wrote:
2. If you've defined a class and some methods, when you instantiate
that class, it knows the type of the object, so when you do a

MyClass $obj = new MyClass('arg');
$obj->

it shows the pop-up again with the members and the public interface of
the class MyClass.


Again yes, both do.


Hmmm...how could that be done in PHP, where variables are typeless?

Jun 18 '06 #7

Water Cooler v2 wrote:
?


i use putty , pico and grep are all I use. simple and effective.

Jun 18 '06 #8
Water Cooler v2 wrote:
?


<news:ab**************************@posting.google. com> (
http://groups.google.com/group/comp....5b35d0b0d8a5d6 )

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

Jun 18 '06 #9
Gary L. Burnore wrote:
On 17 Jun 2006 17:58:20 -0700, "Chung Leong"
<ch***********@hotmail.com> wrote:
Gary L. Burnore wrote:
2. If you've defined a class and some methods, when you instantiate
that class, it knows the type of the object, so when you do a

MyClass $obj = new MyClass('arg');
$obj->

it shows the pop-up again with the members and the public interface of
the class MyClass.
Again yes, both do.

Hmmm...how could that be done in PHP, where variables are typeless?


It can only know by the name of the class. It ain't perfect by any
means. It can be "fooled". You still have to know what you're doing.


I *think* he may have been referring to this line of yours:

MyClass $obj = new MyClass('arg');

Since PHP is loosely typed, the "MyClass" preceding $obj is bad syntax.

And, if that's not the case, then @Chung Leong: The IDE keeps track
of which class you assign to the variable. Zend Studio is even capable
of doing this for assignments from a function call:
Jun 18 '06 #10

Chung Leong wrote:
Gary L. Burnore wrote:
2. If you've defined a class and some methods, when you instantiate
that class, it knows the type of the object, so when you do a

MyClass $obj = new MyClass('arg');
$obj->

it shows the pop-up again with the members and the public interface of
the class MyClass.


Again yes, both do.


Hmmm...how could that be done in PHP, where variables are typeless?

You couldn't do it with 100% accuracy, but if you're advanced enough to
do OOP, then chances are your methods are returning the same type. The
visual studio PHP plugin does this, and it is quite accurate.

If you like visual studio, i suggest getting the VS.php plugin, its
very nice. Provides the same features that are built in for c/c++ in
the msvs ide. It has a few idiosyncracies, but is otherwise very nice.

There is also Eclipse, which provides good PHP support (intellisense,
syntax as you type), too, also through a plugin.

Jun 18 '06 #11
Yikes! Premature posting...

Ryan Lange wrote:
And, if that's not the case, then @Chung Leong: The IDE keeps track
of which class you assign to the variable. Zend Studio is even capable
of doing this for assignments from a function call:


The function definition must have a docblock that indicates the
return value, though:

/**
* @return MyClass
*/
function getMyClass()
{
return new MyClass();
}

$obj = getMyClass();
$obj->[ZDE pops up a list of public methods from MyClass]

Very useful. :-)

Ryan
Jun 18 '06 #12
Water Cooler v2 wrote:
?


Zeus for Windows IDE: http://www.zeusedit.com/php.html

Jun 19 '06 #13
Ryan Lange wrote:
Yikes! Premature posting...

Ryan Lange wrote:
And, if that's not the case, then @Chung Leong: The IDE keeps track
of which class you assign to the variable. Zend Studio is even capable
of doing this for assignments from a function call:


The function definition must have a docblock that indicates the
return value, though:

/**
* @return MyClass
*/
function getMyClass()
{
return new MyClass();
}

$obj = getMyClass();
$obj->[ZDE pops up a list of public methods from MyClass]

Very useful. :-)


Aha, now it makes sense.

Jun 19 '06 #14
I really like Zend Studio and recommend it.

Jun 19 '06 #15

Water Cooler v2 wrote:
?


I'm a NuSphere PhpED (http://www.nusphere.com) addict :)
PhpEd increased my productivity tremendously. After evaluating leading
PHP-IDEs I decided for PhpEd because of its very intuitive handling and
a fantastic support, helping me before & after purchasing the product.
I just switched to PhpEd within 1 hour (Flash-Demo helped a lot) - the
first remote-debugging & profiling session was running in just 5
minutes because of the excellent Handbook. The DB-Client saves me time
every day, now. Any other features can be found in many PHP-IDEs - on
PhpEd they are implemented that perfectly, that you can feel that this
product was made by developers for developers.

Jun 19 '06 #16
the DtTvB wrote:
I really like Zend Studio and recommend it.


I tried Zend Studio and I don't like it. It's overly bloaty, and VERY
difficult to uninstall.

Besides, having mucked around with IDEs under other languages, I have to say
that I find most IDEs lacking.

I use Emacs these days for nearly everything.

If I have to spend inordinate amounts of time setting up the IDE, setting up
the code for debugging, and then single-stepping through it, etc, I find I
could've always found the problems much faster by inserting plain-old print
statements.

--
-- Edmond Dantes, CMC
And Now for something Completely Different:
http://joinery.SelfMadeDream.com
http://can-opener.AfterWeddingAffair.com
http://cold-remedy.WomenLite.com
http://paint-brushes.SlamItYourself.com
http://thermometer.WebPeekaboo.com
http://Peugeot.ReallyHotOrNot.com
http://recorder.whiteboystuff.com

Jun 22 '06 #17

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

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
1
by: Richard Galli | last post by:
I want viewers to compare state laws on a single subject. Imagine a three-column table with a drop-down box on the top. A viewer selects a state from the list, and that state's text fills the...
4
by: Albert Ahtenberg | last post by:
Hello, I have two questions. 1. When the user presses the back button and returns to a form he filled the form is reseted. How do I leave there the values he inserted? 2. When the...
1
by: inderjit S Gabrie | last post by:
Hi all Here is the scenerio ...is it possibly to do this... i am getting valid course dates output on to a web which i have designed ....all is okay so far , look at the following web url ...
2
by: Jack | last post by:
Hi All, What is the PHP equivilent of Oracle bind variables in a SQL statement, e.g. select x from y where z=:parameter Which in asp/jsp would be followed by some statements to bind a value...
3
by: Sandwick | last post by:
I am trying to change the size of a drawing so they are all 3x3. the script below is what i was trying to use to cut it in half ... I get errors. I can display the normal picture but not the...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

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.