View Single Post
  #4 (permalink)  
Old 2005-08-24, 10:19 AM
tangente tangente is offline
Junior Member
 
Join Date: Aug 2005
Posts: 1
tangente
Default

Hello dear Michael Pham,

i'm from Germany, so sorry for my bad english :-)

I have a simple question. I've surfed to php-editors and saw your PHP Designer 2005. Really really nice program.
so my question is....


if a make a class (in the file "test.php") like....
Code:
class test{

  function bla(){
  //no content
  }

  function blaTwo(){
  //also no content
  }
}
and i make a new php-file.......

Code:
<?php

include('test.php');
testVar = new test();
testVar-> *
?>
[*] so i expect that PHP Designer will give me the function-list of the class, so i can overview which functions are in this class.......is it possible? Or is it not supported at the moment?
thank you very much for support!

greetings,
marco
Reply With Quote