dongtu7567 2017-04-26 13:30
浏览 30
已采纳

非法字符串偏移'slug'PDO

I'm trying to pull the pages from my database and make them an actual page url:

http://i.imgur.com/r5AuaKB.png

$stmt = $auth_user->runQuery("SELECT * FROM pages");
$stmt->execute();
$menu = $stmt->fetch(PDO::FETCH_ASSOC);

foreach($menu as $page) {
    if(basename($_SERVER['REQUEST_URI']) == $page['slug']){
        require_once('inc/page/' . $page['slug'] . '.php');
    }
}

But for some reason it doesn't work. I keep getting this

Illegal string offset 'slug'

error. How do I resolve this?

  • 写回答

3条回答 默认 最新

  • dongpang1898 2017-04-26 13:35
    关注

    $page is actually a string, hence the error. fetch returns one row, so this:

    $menu = $stmt->fetch(PDO::FETCH_ASSOC);
    foreach($menu as $page) { ...
    

    actually loops through each column as a string.

    Instead:

    $stmt->execute();
    
    while ($page = $stmt->fetch(PDO::FETCH_ASSOC)) { ...
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?