PHP预处理 CURD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP预处理 CURD相关的知识,希望对你有一定的参考价值。
一、数据库连接方式,
二、预处理后的返回
参考:http://www.php.net/manual/en/class.mysqli-stmt.php
注意。select查询语句后要保存查询结果。然后才有 num_rows;
<?php /* Open a connection */ $mysqli = new mysqli("localhost", "my_user", "my_password", "world"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } $query = "SELECT Name, CountryCode FROM City ORDER BY Name LIMIT 20"; if ($stmt = $mysqli->prepare($query)) { /* execute query */ $stmt->execute(); /* store result */ $stmt->store_result(); printf("Number of rows: %d.\n", $stmt->num_rows); /* close statement */ $stmt->close(); } /* close connection */ $mysqli->close(); ?>
以上是关于PHP预处理 CURD的主要内容,如果未能解决你的问题,请参考以下文章