phpのmysqli汎用操作クラス(プリミティブ)

753 ワード

     
mysqli = new mysqli($local, $user, $pwd, $dbs);
        $this->mysqli->set_charset("utf8");
    }

    //  sql
    function excmd($sqls)
    {
        $result = $this->mysqli->query($sqls);
        return $result;
    }
}

?>

テストコード:
excmd("select * from bookinfo");
while (! ! $row = $result->fetch_row()) {
    echo $row[1] . "
"; } ?>

初歩的なテストは正常に運行し、引き続き完備しなければならない.