久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <tfoot id='VnZ6P'></tfoot>
    <i id='VnZ6P'><tr id='VnZ6P'><dt id='VnZ6P'><q id='VnZ6P'><span id='VnZ6P'><b id='VnZ6P'><form id='VnZ6P'><ins id='VnZ6P'></ins><ul id='VnZ6P'></ul><sub id='VnZ6P'></sub></form><legend id='VnZ6P'></legend><bdo id='VnZ6P'><pre id='VnZ6P'><center id='VnZ6P'></center></pre></bdo></b><th id='VnZ6P'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='VnZ6P'><tfoot id='VnZ6P'></tfoot><dl id='VnZ6P'><fieldset id='VnZ6P'></fieldset></dl></div>

        <bdo id='VnZ6P'></bdo><ul id='VnZ6P'></ul>
    1. <small id='VnZ6P'></small><noframes id='VnZ6P'>

    2. <legend id='VnZ6P'><style id='VnZ6P'><dir id='VnZ6P'><q id='VnZ6P'></q></dir></style></legend>

        Mysqli Prepare 語句 + 綁定順序 BY

        Mysqli Prepare Statements + Binding Order BY(Mysqli Prepare 語句 + 綁定順序 BY)

          <tbody id='7gEDC'></tbody>

              <bdo id='7gEDC'></bdo><ul id='7gEDC'></ul>
            • <legend id='7gEDC'><style id='7gEDC'><dir id='7gEDC'><q id='7gEDC'></q></dir></style></legend>
                <i id='7gEDC'><tr id='7gEDC'><dt id='7gEDC'><q id='7gEDC'><span id='7gEDC'><b id='7gEDC'><form id='7gEDC'><ins id='7gEDC'></ins><ul id='7gEDC'></ul><sub id='7gEDC'></sub></form><legend id='7gEDC'></legend><bdo id='7gEDC'><pre id='7gEDC'><center id='7gEDC'></center></pre></bdo></b><th id='7gEDC'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='7gEDC'><tfoot id='7gEDC'></tfoot><dl id='7gEDC'><fieldset id='7gEDC'></fieldset></dl></div>

                <small id='7gEDC'></small><noframes id='7gEDC'>

                <tfoot id='7gEDC'></tfoot>
                1. 本文介紹了Mysqli Prepare 語句 + 綁定順序 BY的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我在使用 mysqli_stmt 準備函數時遇到了一個小問題.這是我的查詢:

                  I am having a small issue with the mysqli_stmt prepare function. Here is my query:

                  $params = array(
                      "sisi",
                      "some_string",
                      5000,
                      "date_added DESC"
                  );
                  
                  $sql = "SELECT *
                          FROM scenes
                          WHERE scene_title LIKE ?
                          AND scene_id > ?
                          ORDER BY ?
                          LIMIT ?";
                  

                  現在,當我像這樣將參數綁定到數組時(我實例化了一個有效的 mysqli_stmt 對象):

                  Now when i bind the params to the array like this (i have a valid mysqli_stmt object instantiated):

                  call_user_func_array(array($this->mysql_stmt, 'bind_param'), $params);
                  

                  order by 沒有綁定.我在 php.net (http://ca3.php.net/manual/en/mysqli.prepare.php)

                  The order by is not binded. I read on php.net (http://ca3.php.net/manual/en/mysqli.prepare.php)

                  標記僅在某些情況下是合法的放在 SQL 語句中.例如,它們在 VALUES() 列表中是允許的INSERT 語句的(指定行的列值),或在與 WHERE 中的列進行比較子句來指定一個比較值.

                  The markers are legal only in certain places in SQL statements. For example, they are allowed in the VALUES() list of an INSERT statement (to specify column values for a row), or in a comparison with a column in a WHERE clause to specify a comparison value.

                  但是,他們不允許標識符(例如表或列名稱),在名稱的選擇列表中SELECT 返回的列語句,或指定兩個操作數二元運算符,例如 =等號.

                  However, they are not allowed for identifiers (such as table or column names), in the select list that names the columns to be returned by a SELECT statement, or to specify both operands of a binary operator such as the = equal sign.

                  有沒有辦法解決這個問題,還是我必須將 mysql_real_escape_char() 用于 ORDER BY 子句?

                  Is there a way around this or am i going to have to use mysql_real_escape_char() for the ORDER BY clause?

                  推薦答案

                  正如您找到的 php.net 鏈接所述,您不能將綁定變量用于標識符.你需要一個解決方法.mysql_real_escape_char 肯定是一種方式.

                  As the php.net link you found states, you cannot use bind variables for identifiers. You'll need a workaround. mysql_real_escape_char would certainly be one way.

                  這篇關于Mysqli Prepare 語句 + 綁定順序 BY的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  store_result() and get_result() in mysql returns false(mysql 中的 store_result() 和 get_result() 返回 false)
                  Call to undefined function mysqli_result::num_rows()(調用未定義的函數 mysqli_result::num_rows())
                  PHP Prepared Statement Problems(PHP 準備好的語句問題)
                  mysqli_fetch_array returning only one result(mysqli_fetch_array 只返回一個結果)
                  PHP MySQLi Multiple Inserts(PHP MySQLi 多次插入)
                  How do I make sure that values from MySQL keep their type in PHP?(如何確保 MySQL 中的值在 PHP 中保持其類型?)

                  <legend id='75DcN'><style id='75DcN'><dir id='75DcN'><q id='75DcN'></q></dir></style></legend>
                2. <tfoot id='75DcN'></tfoot>
                    • <bdo id='75DcN'></bdo><ul id='75DcN'></ul>
                      <i id='75DcN'><tr id='75DcN'><dt id='75DcN'><q id='75DcN'><span id='75DcN'><b id='75DcN'><form id='75DcN'><ins id='75DcN'></ins><ul id='75DcN'></ul><sub id='75DcN'></sub></form><legend id='75DcN'></legend><bdo id='75DcN'><pre id='75DcN'><center id='75DcN'></center></pre></bdo></b><th id='75DcN'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='75DcN'><tfoot id='75DcN'></tfoot><dl id='75DcN'><fieldset id='75DcN'></fieldset></dl></div>

                        <small id='75DcN'></small><noframes id='75DcN'>

                          <tbody id='75DcN'></tbody>

                            主站蜘蛛池模板: 免费看日韩视频 | 欧美综合一区 | 99pao成人国产永久免费视频 | 四虎永久免费黄色影片 | wwwxxx日本在线观看 | 欧美视频二区 | 日韩欧美二区 | 粉嫩一区二区三区国产精品 | 亚洲福利一区 | 日韩精品一区二区三区中文在线 | 噜噜噜噜狠狠狠7777视频 | 欧美精品在线看 | a级毛片基地 | 亚洲午夜精品久久久久久app | 国产精品欧美一区二区三区不卡 | 亚洲小视频在线播放 | 日本天天操 | 国产视频福利一区 | 国产精品久久久久久久久久久久冷 | 91精品国产综合久久久久 | 欧美日韩黄色一级片 | 久久久性 | 久久精品无码一区二区三区 | 在线黄色网 | 99久久久久久久久 | 欧美啪啪网站 | 国产午夜精品一区二区三区嫩草 | 97超碰免费| 亚洲精品一区二区网址 | 亚洲视频二区 | 九九九久久国产免费 | 欧美日韩一区在线 | 福利片在线观看 | 亚洲成人精品在线 | 97精品超碰一区二区三区 | k8久久久一区二区三区 | 蜜桃视频一区二区三区 | 精品91久久 | 国产视频一区二区 | 国产精品成人av | 日韩精品一 |