Jump to content
  • 0

ООП на php


AMD
 Share

Question

Добрый день форумчани.

Помогите пожалуста разобратся с ООП на php.

Я мало что еще понимаю в нем, но все же.

Суть проблемы такова:

Есть 3 файла(function.php, db.php, index.php);

В db.php написан класс DB, в котором написаны функции(их тут куча, скрипт не совсем мой) типа:

function query($query) {
$this->q_id = mysql_query($query, $this->db_connect_id);
if (! $this->q_id ) {
$error1 = mysql_error();
$error2 .= mysql_errno();
die ("ОШИБКА: Ошибка базы.<br> Не возможно выполнить SQL запрос: $query <br>Вид ошибки: $error1 <br>Ошибка SQL: $error2");
exit;
}
$this->query_count++;
return $this->q_id;
}

function fetch_row($q_id = "") {

if ($q_id == "") {
$q_id = $this->q_id;
}

$result = mysql_fetch_array($q_id, MYSQL_ASSOC);
return $result;

}

А в function.php написан класс densul в котором я к примеру написал функцию

function sql() {
$query = $DB->query("select * from ds_news");
while( $row = $DB->fetch_row($query) ) {
$amd = $row['id'];
echo "$amd";
}
}

Страница index.php

define ('DenSul', 1);
Include ('DB.php');
Include ('function.php');
$db = new DB();
$densul = new DenSul();
$db->connect();
$densul->header($namesite, $template_css);
$densul->sql();

Выдает ошибку:

Notice: Undefined variable: DB in T:\home\localhost\blog\source\function.php on line 47

Fatal error: Call to a member function query() on a non-object in T:\home\localhost\blog\source\function.php on line 47

Как мне записать класс DB в функцию sql ?

:)

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Я, сразу скажу, особо не вникал, что тут у вас творится. IMHO - хреновый велосипед.

Ну а по сути проблемы. Вы же создали экземпляр $db = new DB(); так и нужно работать с экземпляром $db а не объектом $DB.

Link to comment
Share on other sites

  • 0
Я, сразу скажу, особо не вникал, что тут у вас творится. IMHO - хреновый велосипед.

Да согласен, совсем недавно начал вникать, еще мало что понимаю.

Благодарю.

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