Jump to content
  • 0

zend studio for eclipse и класс


odalex
 Share

Question

class some {

private $db;

public function __construct() {
$this->db = new MySQL();
$this->db->connect();
}

function func() {
$this->db->
}
}

вопрос - почему из func у $this->db-> не выпадает табличка с методами и полями этого обьекта? в конструкторе она появляетса, а в другом методе - нет

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

2odalex, потому что phpdoc никто не отменял:

class some {

/**
* @var MySQL
*/
private $db;

public function __construct() {
$this->db = new MySQL();
$this->db->connect();
}

function func() {
$this->db->
}
}

И на заметку: есть такая практика - идентификаторы private и protected свойств/методов начинать с "_", т.е. $_db

p.s. неужели вы будете платить за неон, когда есть pdt?

Link to comment
Share on other sites

  • 0

спасибо за ответ

p.s. я на бетке сидел, а она бесплатная, правда сейчас начался отсчет 30 дней, слышал такой тезис что PDT можно настроить даж лучше чем зенд студию, через месяц скорей всего так и сделаю :(

Link to comment
Share on other sites

  • 0

вопрос опять по PHPDoc

$xml; // обьект класса XML_Node

$xml->firstChild; // обьект класса XML_Node

$root =& $xml->firstChild;

$root->

впрочем как и

$xml->firstChild->

не выпадает список методов, оно и понятно, ведь поле firstChild в его классе описывается как "var $firstChild = null;"

как сделать выпадающую табличку с методами?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy