Connecting the database returns the class of arrays and strings

Source: Internet
Author: User

<! DOCTYPE html>
<meta charset= "Utf-8"/>
<title></title>
<body>
<?php
Class dbda{
Public $host = "localhost";
Public $uid = "root";
Public $pwd = "";
Public $dbname = "Lianxi";

/*
Query method: Executes the user-given SQL statement and returns the corresponding result
$SQL: SQL statement that the user needs to execute
$type: The type of SQL statement that the user needs to execute
Return: Returns TRUE or False if the query returns a two-dimensional array if it is added or deleted
*/
Public Function query ($sql, $type =0) {
$db = new Mysqli ($this->host, $this->uid, $this->pwd, $this->dbname);
if (Mysqli_connect_error ()) {
Return "Connection Failed! ";
}
$result = $db->query ($sql);
if ($type) {
return $result;
}else{
return $result->fetch_all ();
}
}
Public Function Strqurey ($sql, $type) {
$db = new Mysqli ($this->host, $this->uid, $this->pwd, $this->dbname);
if (Mysqli_connect_error ()) {
Return "Connection Failed! ";
}
$result = $db->query ($sql);
if ($type) {
return $result;
}else{
return $result->fetch_all ();
$str = "";
foreach ($arr as $v) {
$str = $str. Implode ("^", $v). "|";
}
$str =substr ($str, 0,strlen ($STR)-1);
return $str;
}
}
}

?>
</body>

Connecting the database returns the class of arrays and strings

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.