modx function
Добрый вечер. Уже который час пытаюсь понять где я допускаю ошибку.
function getlastid() {
$q=$modx->prepare("SELECT `id` from `modx_site_content` order by `id` DESC limit 1");
$q->execute();
$lastid = $q->fetchAll(PDO::FETCH_ASSOC);
return $lastid[0]['id'];
}
echo getlastid();
Выдает Fatal error: Call to a member function prepare() on a non-object in /var/www/firstopt/data/www/firstopt.ru/core/cache/includes/elements/modsnippet/53.include.cache.php on line 11Если же убрать function и сделать
$q=$modx->prepare("SELECT `id` from `modx_site_content` order by `id` DESC limit 1");
$q->execute();
$lastid = $q->fetchAll(PDO::FETCH_ASSOC);
print_r($lastid);
нет проблем, все отлично… Что я делаю не так? Комментарии: 1
Проблема с областью видимости переменной $modx, которой нет в функции.
Нужно или так:
Нужно или так:
function getlastid($modx) {
//...
}
getlastid($modx);
Илиfunction getlastid() {
global $modx;
//...
}
Авторизуйтесь или зарегистрируйтесь, чтобы оставлять комментарии.