vote up -2 vote down star

Hello all, i'm a newbie to PHP and i don't like to write my code in notepad-like editors. Is there an editor like VS for PHP?

Also, if you could give me a reference to a good introductory PHP eBook (one that covers simple concepts like declaring and using classes in PHP) that would be great.

Thanks in advance!

flag

0% accept rate
2  
This is no question. – Ghommey Oct 28 at 10:20
3  
Poorly worded perhaps but certainly a good question! – RCIX Oct 28 at 10:28
Sorry for bad word I read it today. – Hashim Al-Arab Oct 29 at 13:17

3 Answers

vote up 1 vote down

There are lots of ides for php: netbeans, eclipse, komodo edit, delphi. Notepad++(not ide but has nice syntax highlightings). About classes: you can start here

link|flag
vote up 1 vote down

For IDE there are many options. there is VS.PHP (integrates in VS), eclipse PDT, Zend Studio (built on eclipse but not free)

A class can not be declared with accessors in PHP, so a class is declared:

class {}
//and not
public class {}

If you have a class inside a file and you want to use it in another file, you will need to include the file

require_once('MyClass.php');
$myClass = new MyClass(); //note that PHP is not type safe so a variable does not have a type
link|flag
vote up 4 vote down
  1. looking for PHP IDE?
  2. Classes
  3. Manual

That's really all you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.