溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP系列(十二)數(shù)據(jù)庫抽象層pdo

發(fā)布時間:2020-06-01 10:07:54 來源:網(wǎng)絡(luò) 閱讀:561 作者:sswqzx 欄目:web開發(fā)


1、數(shù)據(jù)庫抽象層pdo

(1)、PDO(php data object)擴(kuò)展類庫為php訪問數(shù)據(jù)庫定義了輕量級的、一致性的接口它可以支持mysql,postgresql,oracle,mssql等多種數(shù)據(jù)庫

(2). PDO的安裝

編輯php.ini文件:

extension=php_pdo.dll

extension=php_pdo_mysql.dll

重啟apache服務(wù):

httpd k restart

打開phpinfo.php查看是否有pdo

 

2、創(chuàng)建pdo對象

Oracle

/*連接如果失敗,使用異常處理模式進(jìn)行捕獲 */

try{

$dbh = newPDO("OCI:dbname=accounts;charset=UTF-8", "scott","tiger");

}catch(PDOException$e) {

echo "數(shù)據(jù)庫連接失?。?/span> " .$e->getMessage();

}

Mysql

$dsn ='mysql:dbname=testdb;host=127.0.0.1'; //連接MySQL數(shù)據(jù)庫的DSN

$user = 'dbuser';//MySQL數(shù)據(jù)庫的用戶名

$password ='dbpass'; //MySQL數(shù)據(jù)庫的密碼

try {

$dbh = newPDO($dsn, $user, $password);

} catch(PDOException $e) {

echo '數(shù)據(jù)庫連接失?。?/span> ' . $e->getMessage();

}

 

Php.ini配置文件中[pdo]下在加入下面文字

Pdo.dsn.ssw=”mysql:host=localhosot;dbname=malldb”;

try {

$dbh = new PDO(ssw,root, sswqzx);

} catch(PDOException $e) {

echo '數(shù)據(jù)庫連接失?。?/span> ' . $e->getMessage();

}

 

//設(shè)置持久連接的選項數(shù)組作為最后一個參數(shù),可以一起設(shè)置多個元素

$opt =array(PDO::ATTR_PERSISTENT => true);

try {

$db = newPDO('mysql:host=localhost;dbname=test','dbuser''passwrod',$opt);

} catch(PDOException $e) {

echo "數(shù)據(jù)庫連接失?。?/span> " .$e->getMessage();

}

 

3、PDO與連接有關(guān)的選項

         try {

                   $pdo=new  PDO("mysql:host=localhost;dbname=malldb","root","123456",array(PDO::ATTR_AUTOCOMMIT=>false,PDO::ATTR_PERSISTENT=>1 ));

         }catch(PDOException $e) {

                   echo "數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

//var_dump($pdo);

//      $pdo->setAttribute(PDO::ATTR_AUTOCOMMIT,false);

 

         echo "<br>PDO是否關(guān)閉自動提交功能:".$pdo->getAttribute(PDO::ATTR_AUTOCOMMIT);

         echo "<br>當(dāng)前PDO的錯誤處理的模式:". $pdo->getAttribute(PDO::ATTR_ERRMODE);

         echo "<br>表字段字符的大小寫轉(zhuǎn)換: ".$pdo->getAttribute(PDO::ATTR_CASE);

         echo "<br>與連接狀態(tài)相關(guān)特有信息: ".$pdo->getAttribute(PDO::ATTR_CONNECTION_STATUS);

         echo "<br>空字符串轉(zhuǎn)換為SQLnull". $pdo->getAttribute(PDO::ATTR_ORACLE_NULLS);

         echo "<br>應(yīng)用程序提前獲取數(shù)據(jù)大?。?/span>".$pdo->getAttribute(PDO::ATTR_PERSISTENT);

         echo "<br>與數(shù)據(jù)庫特有的服務(wù)器信息:".$pdo->getAttribute(PDO::ATTR_SERVER_INFO);

         echo "<br>數(shù)據(jù)庫服務(wù)器版本號信息:".$pdo->getAttribute(PDO::ATTR_SERVER_VERSION);

         echo "<br>數(shù)據(jù)庫客戶端版本號信息:".$pdo->getAttribute(PDO::ATTR_CLIENT_VERSION);

 

4PDO的錯誤處理模式

/*

setAttribute();

PDO::ATTR_ERRMODE;

1、默認(rèn)的錯誤模式(不提示、我們看到問題、被忽視)

2、警告模式:PDO::ERRMODE_WARNING

3、異常的模式:PDO::ERRMODE_EXCEPTION

*/

 

try(

//創(chuàng)建對象

$pdo = newPDO("mysql:host=localhost;dbname=malldb","root","sswqzx");

//設(shè)置錯誤使用異常的模式

$pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);

)catch(PDOException $e){

         echo"數(shù)據(jù)庫鏈接失敗".$e->getMessage();

         exit;

}

 

try(

//使用PDO中的方法執(zhí)行語句

$affected_rows = $pdo ->exec("delete from hello");

)catch(PDOException $e){

echo "錯誤".$e->getMessage();

}

 

5、使用PDO執(zhí)行SQL語句

代碼1

/*

PDO中執(zhí)行SQL語句的方法有二個主要的:

1、exec() 用來處理非結(jié)果集的: insert updatedelete create ....

返回影響的函數(shù)

2、query() 用來處理有結(jié)果集的語句: select descshow

 

set naees utf8;

$pdo -> query("set namesutf8");

$pdo -> exec("set namesutf8");

*/

 

try{

//創(chuàng)建對象

$pdo = new PDO("mysql:host=localhost;dbname=malldb","root","sswqzx");

//設(shè)置錯誤使用異常的模式

$pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);

}catch(PDOException $e){

         echo"數(shù)據(jù)庫鏈接失敗".$e->getMessage();

         exit;

}

 

try{

//使用PDO中的方法執(zhí)行語句

$affected_rows = $pdo ->exec("insert into user(name,pass,sex,age,email)values('aa','bb','cc','20','ee@qq.com')");

echo $affected_rows."<br>";

echo $pdo->lastinsertid();

}catch(PDOException $e){

echo "錯誤".$e->getMessage();

}

代碼2

<?php

try{

$dbh = newPDO('mysql:dbname=testdb;host=localhost', 'mysql_user', 'mysql_pwd');

}catch(PDOException$e){

exit('數(shù)據(jù)庫連接失?。?/span>'.$e->getMessage());

}

$query = UPDATE contactInfo SET phone=15801680168 where name=‘高某某’”;

//使用exec()方法可以執(zhí)行INSERT、UPDATEDELETE

$affected =$dbh->exec($query);

if($affected){

echo '數(shù)據(jù)表contactInfo中受影響的行數(shù)為:'.$affected;

}else{

print_r($dbh->errorInfo());

}

代碼3

<?php

$dbh = newPDO('mysql:dbname=testdb;host=localhost', 'mysql_user', 'mysql_pwd');

$dbh->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);

$query =

"SELECT name,phone, email FROM contactInfo WHERE departmentId='D01'";

try {

//執(zhí)行SELECT查詢,并返回PDOstatement對象              

$pdostatement =$dbh->query($query);

echo "一共從表中獲取到".$pdostatement->rowCount()."條記錄:\n";

foreach($pdostatement as $row) {//PDOstatement對象中遍歷結(jié)果

echo $row['name'] ."\t"; //輸出從表中獲取到的聯(lián)系人的名字

echo $row['phone']. "\t"; //輸出從表中獲取到的聯(lián)系人的電話

echo $row['email']. "\n";//輸出從表中獲取到的聯(lián)系人的電子郵件

}

} catch(PDOException $e) {

echo$e->getMessage();

}

6PDO事務(wù)處理

MySQL的事務(wù)處理

事務(wù):將多條sql操作(增刪改)作為一個操作單元,要

么都成功,要么都失敗。

MySQL對事務(wù)的支持:

被操作的表必須是innoDB類型的表(支持事務(wù))

MySQL常用的表類型:MyISAM(非事務(wù))增刪改速度快、

InnodB(事務(wù)型)安全性高

更改表的類型為innoDB類型

mysql> altertable stu engine=innodb;

Query OK, 29 rowsaffected (0.34 sec)

Records: 29Duplicates: 0 Warnings: 0

mysql> showcreate table stu\G; //查看表結(jié)構(gòu)

事務(wù)處理

Mysql> set autocommit = 0;

mysql>start transaction;

Mysql>commit;

Mysql>roolback;

7、構(gòu)建事務(wù)處理的應(yīng)用程序

開啟一次事務(wù):

$pdo->beginTransaction();

提交一次事務(wù):

$pdo->commit();

回滾一次事務(wù):

$pdo->rollback();

注意如下設(shè)置:

1.$pdo->setAttribute(PDO::ATTR_AUTOCOMMIT,0);

2.$pdo->setAttribute(PDO::ATTR_AUTOCOMMIT,1);

代碼:

<?php

/*

 * PDO中執(zhí)行SQL語句的方法有兩個主要的:

 *

 *    1.  exec()   用來處理非結(jié)果集的  insert update deletecreate ....

 *

 *      返回影響的函數(shù)

 *

 *      如果是插入語句可以使用lastinsertid()方法獲取最后自動插入id

 *

 *

 *    2.  query()   用來處理有結(jié)果集的語句  select   desc show

 *

 *   返回來的是 PDOStatement類的對象,再通過這個類的方法,獲取結(jié)果。也可以直接foreach遍歷獲取結(jié)果(但不常用)

 *

 *    setnames utf8;

 *

 *   $pdo -> query("set names utf8");

 *   $pdo -> exec("set names utf8");

 */

 

         try{

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   //關(guān)閉自動提交

                   $pdo->setAttribute(PDO::ATTR_AUTOCOMMIT, 0);

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失敗:".$e->getMessage();

                   exit;

         }

 

 

         try{

                   //開啟一個事務(wù)

                   $pdo-> beginTransaction();

 

                   $price= 50;

                   //妹子轉(zhuǎn)出50

                   $affected_rows= $pdo-> exec("update demo set ye=ye-{$price} where id=1");

 

                   if($affected_rows> 0) {

                            echo"妹子轉(zhuǎn)出{$price}元成功!<br>";

                   }else {

                            thrownew PDOException("妹子轉(zhuǎn)出失??!<br>");

                   }

 

                   //張三會收到50

                   $affected_rows= $pdo-> exec("update demo set ye=ye+{$price} where id=3");

 

                   if($affected_rows){

                            echo"張三收到{$price}元成功!";

                   }else{

                            thrownew PDOException("張三收入失?。?/span><br>");

                   }

 

        

                   echo"交易成功!<br>";

 

                  //提交以上的操作

                   $pdo->commit();     

 

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

                   echo"交易失敗!<br>";

                   //撤銷所有操作

                   $pdo-> rollback();

         }

 

         //運(yùn)行完成以后, 最后開啟自動提交

         $pdo->setAttribute(PDO::ATTR_AUTOCOMMIT, 1);

8、使用PDO準(zhǔn)備語句并執(zhí)行語句

得到pdo預(yù)處理對象的方法:

$sql=select * from user order by id;

$sth=$pdo->prepare($sql);

以上代碼中的$sth即為預(yù)處理對象

PDO中參數(shù)式的SQL語句有兩種(預(yù)處理sql)

1.insert intostu(id,name) value(?,?); //?號式(適合參數(shù)少的)

2.insert intostu(id,name) value(:id,:name);//別名式(適合參數(shù)多的)

代碼1

         try{

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                   //給數(shù)據(jù)庫管理系統(tǒng)并直接執(zhí)行

                   //$pdo-> query("select * from users");

                  

                   //只是將這個語句放到服務(wù)器上(數(shù)據(jù)庫管理系統(tǒng))上, 編寫后等待,沒有執(zhí)行

                   $stmt= $pdo -> prepare("insert into users(name, pass, age, sex, email)values(?, ?, ?, ?, ?)");

 

                   //綁定參數(shù)(?),將問號和一個變量關(guān)聯(lián)起來

                   $stmt-> bindParam(1, $name);

                   $stmt-> bindParam(2, $pass);

                   $stmt-> bindParam(3, $age);

                   $stmt-> bindParam(4, $sex);

                   $stmt-> bindParam(5, $email);

 

                   //給變量一個值, 就會給準(zhǔn)好的語句中的對應(yīng)?一個值

                   $name= "admin";

                   $pass= "hello";

                   $age= 100;

                   $sex= "nnn";

                   $email= "aaa@bbb.com";

                   //執(zhí)行上面在數(shù)據(jù)庫系統(tǒng)中準(zhǔn)備好的語句

                   $stmt-> execute();

        

 

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

 

代碼2:

         try {

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                   //給數(shù)據(jù)庫管理系統(tǒng)并直接執(zhí)行

                   //$pdo-> query("select * from users");

                  

                   //只是將這個語句放到服務(wù)器上(數(shù)據(jù)庫管理系統(tǒng))上, 編寫后等待,沒有執(zhí)行

                   $stmt= $pdo -> prepare("insert into users(name, pass, age, sex, email)values(:name, :pass, :age, :sex, :email)");

 

                   //綁定參數(shù)(?),將問號和一個變量關(guān)聯(lián)起來

                   $stmt-> bindParam("name", $name, PDO::PARAM_STR);

                   $stmt-> bindParam("pass", $pass, PDO::PARAM_STR);

                   $stmt-> bindParam("age", $age, PDO::PARAM_INT);

                   $stmt-> bindParam("sex", $sex, PDO::PARAM_STR);

                   $stmt-> bindParam("email", $email, PDO::PARAM_STR);

 

                   //給變量一個值, 就會給準(zhǔn)好的語句中的對應(yīng)?一個值

                   $name= "admin1";

                   $pass= "hello1";

                   $age= 1001;

                   $sex= "nnn1";

                   $email= "aaa@bbb.com1";

                   //執(zhí)行上面在數(shù)據(jù)庫系統(tǒng)中準(zhǔn)備好的語句

                   $stmt-> execute();

        

 

 

                  //給變量一個值, 就會給準(zhǔn)好的語句中的對應(yīng)?一個值

                   $name= "admin2";

                   $pass= "hello2";

                   $age= 1002;

                   $sex= "nnn2";

                   $email= "aaa@bbb.com2";

                   //執(zhí)行上面在數(shù)據(jù)庫系統(tǒng)中準(zhǔn)備好的語句

                   $stmt-> execute();                      

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

代碼3

         try{

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                   //給數(shù)據(jù)庫管理系統(tǒng)并直接執(zhí)行

                   //$pdo-> query("select * from users");

                  

                   //只是將這個語句放到服務(wù)器上(數(shù)據(jù)庫管理系統(tǒng))上, 編寫后等待,沒有執(zhí)行

              //  $stmt = $pdo -> prepare("insert into users(name, pass, age, sex,email) values(:name, :pass, :age, :sex, :email)");

                $stmt = $pdo -> prepare("insertinto users(name, pass, age, sex, email) values(?, ? ,?, ?, ?)");

 

 

                $stmt -> execute(array("jone",'123456', 18, 'nv', 'aa@bb.com'));       

                $stmt -> execute(array("jone2",'123456', 18, 'nv', 'aa@bb.com'));       

                $stmt -> execute(array("jone22",'123456', 18, 'nv', 'aa@bb.com'));       

 

 

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

 

代碼4

         try{

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                   //給數(shù)據(jù)庫管理系統(tǒng)并直接執(zhí)行

                   //$pdo-> query("select * from users");

                  

                   //只是將這個語句放到服務(wù)器上(數(shù)據(jù)庫管理系統(tǒng))上, 編寫后等待,沒有執(zhí)行

$stmt = $pdo -> prepare("insertinto users(name, pass, age, sex, email) values(:name, :pass, :age, :sex,:email)");

// $stmt = $pdo -> prepare("insertinto users(name, pass, age, sex, email) values(?, ? ,?, ?, ?)");

$stmt ->execute(array("name"=>"feng","pass"=>"abc123#", "age"=>28,"sex"=>"nan","email"=>"aaa@bbb.com"));       

    

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

 

代碼5

 

         try{

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                   //給數(shù)據(jù)庫管理系統(tǒng)并直接執(zhí)行

                   //$pdo-> query("select * from users");

                  

                   //只是將這個語句放到服務(wù)器上(數(shù)據(jù)庫管理系統(tǒng))上, 編寫后等待,沒有執(zhí)行

                 $stmt = $pdo -> prepare("insertinto users(name, pass, age, sex, email) values(:name, :pass, :age, :sex,:email)");

               // $stmt = $pdo ->prepare("insert into users(name, pass, age, sex, email) values(?, ? ,?, ?,?)");

 

 

                $stmt -> execute($_GET);               

               

 

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

 

9、PDO的預(yù)處理查詢

代碼1

         try{

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                  

                   $stmt= $pdo -> prepare("select id, name, age, sex, email from users where id> ? and id < ?");

                   $stmt-> execute(array(500, 800));

 

        

                   foreach($stmtas $row) {

                            print_r($row);

                            echo'<br>';

                   }

 

                   //mysql_fetch_array()   mysql_fetch_rows  mysql_fetch_array()

/*

                   echo'<table border="1" width=800>';

                   while(list($id,$name, $age, $sex, $email) = $stmt -> fetch(PDO::FETCH_NUM)) {

                            echo'<tr>';

                            echo'<td>'.$id.'</td>';

                            echo'<td>'.$name.'</td>';

                            echo'<td>'.$age.'</td>';

                            echo'<td>'.$sex.'</td>';

                            echo'<td>'.$email.'</td>';

                            echo'</tr>';

                   }

 

                   echo'</table>';

 */           

 

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

代碼2

 

try {

                   //創(chuàng)建對象

                  $pdo = newPDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                  

                   $stmt= $pdo -> prepare("select id, name, age, sex, email from users where id> ? and id < ?");

                   $stmt-> execute(array(500, 800));

 

 

                   //可以設(shè)置結(jié)果的模式, 以下的代碼使用fetch()fetchAll()都是使用這個方面設(shè)置的數(shù)組的格式

                   $stmt-> setFetchMode(PDO::FETCH_NUM);

 

 

                   echo'<pre>';

 

                   print_r($stmt->fetchAll());

 

                   echo'</pre>';

 

                   //mysql_fetch_array()   mysql_fetch_rows mysql_fetch_array()

/*

                   echo'<table border="1" width=800>';

                   while(list($id,$name, $age, $sex, $email) = $stmt -> fetch(PDO::FETCH_NUM)) {

                            echo'<tr>';

                            echo'<td>'.$id.'</td>';

                            echo'<td>'.$name.'</td>';

                            echo'<td>'.$age.'</td>';

                            echo'<td>'.$sex.'</td>';

                            echo'<td>'.$email.'</td>';

                            echo'</tr>';

                   }

 

                   echo'</table>';

 */           

 

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

 

代碼:

         try{

                   //創(chuàng)建對象

                   $pdo= new PDO("mysql:host=localhost;dbname=malldb", "root","123456");

                   //設(shè)置錯誤使用異常的模式

                   $pdo-> setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

                   $pdo-> query("set names utf8");

         }catch(PDOException$e) {

                   echo"數(shù)據(jù)庫連接失?。?/span>".$e->getMessage();

                   exit;

         }

 

 

         try{

                  

                   $stmt= $pdo -> prepare("insert into users(name, pass, age, sex,email)values(?, ? ,? ,? ,?)");

                   $stmt-> execute(array('111', '222', 333, '444', '555'));

 

                   //獲取數(shù)據(jù)結(jié)果中的行數(shù), 或如果是影響函數(shù)的語句執(zhí)行則獲取的是影響行數(shù)

                   echo$stmt->rowCount();

 

                   echo'<br>';

                   //如何獲取最后一個自動增漲的ID?

                   echo$pdo -> lastInsertId();

         }catch(PDOException$e) {

                   echo"錯誤:".$e->getMessage();

         }

 


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI