publicfunctionwechatFlow(){$this->conn =newmysqli("localhost", USER, PASSWORD);//连接MySqlif($this->conn->connect_errno) {die("Connect Error(".$this->conn->connect_errno .")".$this->conn->connect_error); }$this->conn->query("SET NAMES UTF8");$this->conn->query("CREATE DATAB...
mysqli_get_host_info($conn) . "\n"; if ($result = $conn->query("SELECT DATABASE()")) { $row = $result->fetch_row(); printf("Default database is %s.\n", $row[0]); $result->close(); } $conn->select_db("test"); if ($result = $conn->query("SELECT DATABASE()"))...