IDE for PHP

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Water Cooler v2

    IDE for PHP

    ?

  • Bent Stigsen

    #2
    Re: IDE for PHP

    Water Cooler v2 wrote:
    [color=blue]
    > ?[/color]



    --
    /Bent

    Comment

    • AlexVN

      #3
      Re: IDE for PHP

      Water Cooler v2 wrote:[color=blue]
      > ?[/color]

      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
      COCOL88 merupakan platform slot gacor yang selalu memberikan bonus menguntungkan serta sering memberikan jackpot maxwin dengan mudah!!


      Comment

      • Water Cooler v2

        #4
        Re: IDE for PHP

        Thanks. :-)

        Comment

        • Water Cooler v2

          #5
          Re: IDE for PHP


          Gary L. Burnore wrote:[color=blue]
          > On 17 Jun 2006 16:36:43 -0700, "Water Cooler v2" <wtr_clr@yahoo. com>
          > wrote:
          >[color=green]
          > >Thanks. :-)[/color]
          >
          > 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
          > =============== =============== =============== =============== ===============[/color]




          Do any of the IDE's offer Intellisense?

          Comment

          • Water Cooler v2

            #6
            Re: IDE for PHP


            Gary L. Burnore wrote:
            [color=blue][color=green][color=darkred]
            > >> You might also check out Komodo. (and work on leaving the bit that
            > >> you're replying to when posting instead of snipping it all.)[/color][/color]
            >[color=green]
            > >Do any of the IDE's offer Intellisense?[/color]
            >
            > 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)[/color]



            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?

            Comment

            • Chung Leong

              #7
              Re: IDE for PHP

              Gary L. Burnore wrote:[color=blue][color=green]
              > >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.[/color]
              >
              > Again yes, both do.[/color]

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

              Comment

              • veg_all@yahoo.com

                #8
                Re: IDE for PHP


                Water Cooler v2 wrote:[color=blue]
                > ?[/color]

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

                Comment

                • R. Rajesh Jeba Anbiah

                  #9
                  Re: IDE for PHP

                  Water Cooler v2 wrote:[color=blue]
                  > ?[/color]

                  <news:abc4d8b8. 0504170433.5860 16c7@posting.go ogle.com> (
                  http://groups.google.com/group/comp....5b35d0b0d8a5d6 )

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

                  Comment

                  • Ryan Lange

                    #10
                    Re: IDE for PHP

                    Gary L. Burnore wrote:[color=blue]
                    > On 17 Jun 2006 17:58:20 -0700, "Chung Leong"
                    > <chernyshevsky@ hotmail.com> wrote:
                    >[color=green]
                    >> Gary L. Burnore wrote:[color=darkred]
                    >>>> 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.[/color]
                    >> Hmmm...how could that be done in PHP, where variables are typeless?[/color]
                    >
                    > 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.[/color]

                    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:

                    Comment

                    • Richard Levasseur

                      #11
                      Re: IDE for PHP


                      Chung Leong wrote:[color=blue]
                      > Gary L. Burnore wrote:[color=green][color=darkred]
                      > > >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.[/color]
                      > >
                      > > Again yes, both do.[/color]
                      >
                      > Hmmm...how could that be done in PHP, where variables are typeless?[/color]


                      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.

                      Comment

                      • Ryan Lange

                        #12
                        Re: IDE for PHP

                        Yikes! Premature posting...

                        Ryan Lange wrote:[color=blue]
                        > 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:[/color]

                        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

                        Comment

                        • jussij@zeusedit.com

                          #13
                          Re: IDE for PHP

                          Water Cooler v2 wrote:[color=blue]
                          > ?[/color]

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

                          Comment

                          • Chung Leong

                            #14
                            Re: IDE for PHP

                            Ryan Lange wrote:[color=blue]
                            > Yikes! Premature posting...
                            >
                            > Ryan Lange wrote:[color=green]
                            > > 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:[/color]
                            >
                            > 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. :-)[/color]

                            Aha, now it makes sense.

                            Comment

                            • the DtTvB

                              #15
                              Re: IDE for PHP

                              I really like Zend Studio and recommend it.

                              Comment

                              Working...