Jump to content
  • 0

Возвращение массива.


Bolmazov
 Share

Question

Вопрос: если метод объекта возвращает массив, то как разом выполнить метод и обратится к элементу массива?

Т.е. что-то типа этого: $table->get($id)[$row]; (пример не рабочий)

P.S. Как видно из примера я хочу с помощью объекта завуалировать объемный код обращения к БД, раз уж зашла речь, то насколько моя идея кощунственна и может уже есть "велосипед" для решения таких задач? уверен, есть...

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

$table->get($id)[$row]; // Так нельзя.

А как ты специфические выборки будешь производить? Возможно подобные решения есть, но ты очень потеряешь в производительности потому, что скрипту сначала нужно сделать выбоку из БД, а потом накладывать ограничения на полученные результат...

Это яркий пример того, как страдает производительность во имя удобства использования/красоты кода (хотя я бы не назвал этот способ удобным).

Link to comment
Share on other sites

  • 0

Ты прав. Но очень надо было этим заняться по той причине, что в одном скрипте приходилось выполнять несколько запросов к БД - это приводит к большому количеству переменных + в includ'ах такая же ситуация. Следовательно легко запутаться. Решил сделать объект, прикинул возможности - посчитал такой способ удобным.

Вот что получилось, хотел бы что бы вы покритиковали:

<?
class table{
public $name;
public $result;
public $numrows;

public function value($what, $where=""){
if (!include_once 'connectDB.php') die;
$result = mysql_query("SELECT $what FROM $this->name WHERE $where");
if ($result && $numrows = mysql_num_rows($result)){
while ($row = mysql_fetch_array($result)){
$query[] = $row;
$this->numrows++;
}
$this->result = $query;
return $query;
}
}
public function __construct($what, $name, $where){
$this->name = $name;
$this->type = $this->type();
$this->result = $this->value($what, $where);
}
}


$table = new table("*","comments", "is_passed=0");
print_r ( $table->result)

ИМХО -хороший компромисс удобства и функциональности.

Edited by Bolmazov
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