從MySQL 更新到MySQLi 以查詢資料庫
由於MySQL 已被棄用,許多開發人員正在更新他們的程式碼以使用MySQLi 。然而,對於那些不熟悉 MySQLi 語法的人來說,這種轉換可能具有挑戰性。本文提供了將 MySQL 查詢轉換為其 MySQLi 等效查詢的起點。
原始MySQL 程式碼:
$sql_follows="SELECT * FROM friends WHERE user1_id=".$_SESSION['id']." AND status=2 OR user2_id=".$_SESSION['id']." AND status=2"; $query_follows=mysql_query($sql_follows) or die("Error finding friendships"); if($query_follows>0){ }
MySQLi 等效程式碼:
$Your_SQL_query_variable = mysqli_query($connectionvariable, "SELECT * FROM friends WHERE user1_id=".$_SESSION['id']." AND status=2 OR user2_id=".$_SESSION['id']." AND status=2"); if ($mysqli->errno) { printf("Error: %s\n", $mysqli->error); }
其他工具工具與資源:
MySQL 轉換器工具: https://github.com /philip/MySQLConverterTool
MySQL Shim Library: https://github.com/dshafik/php7-mysql -shim
以上是如何從 MySQL 遷移到 MySQLi 進行資料庫查詢:逐步指南的詳細內容。更多資訊請關注PHP中文網其他相關文章!