This article will give you a detailed introduction to how to use php PDO. You are welcome to refer to it. Friends who need to know more can save this article.
PDO::exec
The returned type is int, indicating the number of items that affect the result.
PDOStatement::execute
The returned value is boolean, true indicates successful execution, false indicates execution failure.
These two usually appear in:
The code is as follows | Copy code | ||||
$pre = $pdo->prepare($sql); |
Generally, you can use the value of $rs0 to determine whether the SQL execution is successful or not. If the value is false, it means that the SQL execution failed, 0 means no changes, and a value greater than 0 means how many records were affected.
However, $rs1 can only return whether the SQL execution is successful or not. If you need to get the number of affected records, you need to use $pre->rowCount();
I personally like to use MySQL, so I have these two lines in my extensions.ini
extension=pdo.so
extension=pdo_mysql.so
代码如下 | 复制代码 |
define('DB_NAME','test'); |
Code: [Select]
The code is as follows | Copy code |
define('DB_NAME','test'); define('DB_USER','test');define('DB_PASSWD','test'); define('DB_HOST','localhost');define('DB_TYPE','mysql'); $dbh = new PDO(DB_TYPE.':host='.DB_HOST.';dbname='.DB_NAME, DB_USER, DB_PASSWD);
|
When operating like the above, $dbh itself represents the PDO connection
代码如下 | 复制代码 |
$sql = 'select * from test'; |
So what? Use PDO?
Don’t think about anything, just use the query function as usual
Code: [Select]
The code is as follows | Copy code | ||||
$sql = 'select * from test'; foreach ( $dbh->query($sql) as $value){ echo $value[col];
|
The code is as follows | Copy code |
$sth = $dbh->prepare('update db set zh_CN= :str where SN=:SN'); $sth->bindParam(':str',$str,PDO::PARAM_STR,12); $sth->bindParam(':SN',$SN); $sth->execute(); |
Please pay attention to :str and :SN in the article. When we use the bindParam function, we can use :word to specify the part that the system needs to apply. For example, we use :str and :SN to specify
As for the actual content, bindParam can also specify the type we want to input.
首先我们先看:str 的指定,:str 由於我确定资料是属於文字,因此利用PD::PARAM_STR 来告诉程式“这个是字串哟”,并且给一个范围,也就是长度是12个Bit.
We can also avoid that complexity, like :SN. Although it is also specified using bindParam, we omit the type and length. PHP will use the default type of the variable.
Finally, use $sth->execute(); to perform the execution action.
Basically it’s not difficult, it can even be said to be very simple!
If you have a large amount of data that needs to be applied repeatedly, you can desperately reuse bindParam to specify, such as my :str and :SN. If there are ten pieces of data, I can also add it directly to the data like this Library
Code: [Select]
The code is as follows | Copy code | ||||
foreach ($array => $value ) $sth->bindParam(':SN',$value[SN]); $sth->execute();
} |
代码如下 | 复制代码 |
$sth = $dbh->prepare('select * from db where SN = :SN'); |
Then, if you use prepare to select, of course the keywords can also be specified using :word as above
Code: [Select]
The code is as follows | Copy code |
$sth = $dbh->prepare('select * from db where SN = :SN');
$sth->bindParam(':SN',$value[SN]);
echo $meta["name"]; |
This? The new one is fetch, which has the same meaning as mysql_fetch_row()
But in fetch() we found an extra PDO::FETCH_ASSOC
fetch() provides many ways to obtain data, and PDO::FETCH_ASSOC refers to returning the field name and value of the next data For example, in the above example, use $meta to obtain the data returned by fetch. At this time
The element name of $meta is the field name of the database, and the content is of course the value itself
代码如下 | 复制代码 |
$sth = $dbh->prepare('select * from db where SN = :SN'); |
The code is as follows | Copy code |
$sth = $dbh->prepare('select * from db where SN = :SN'); $sth->bindParam(':SN',$value[SN]); $sth->execute(); if ($sth->errorCode()) { echo "There is an error! There is an error!"; print_r($sth->errorInfo()); } |
And $sth->errorInfo() will be an array, this array has three values
0 is SQLSTATE error code
1 The error code returned by the Driver you are using
2 Error message returned by the Driver you are using

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
