PHP预处理 CURD

Posted [幸运]

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();
?>
View Code

 

以上是关于PHP预处理 CURD的主要内容,如果未能解决你的问题,请参考以下文章

使用PHP操作SQL 完成简单的CURD操作

php对xml文件进行CURD操作

PHP 基于PDO封装CURD,分页类封装

大数据必学Java基础(九十六):PreparedStatement完成CURD和批处理

超级有用的9个PHP代码片段

PHP操作PDO预处理以及事务