gpt4 book ai didi

php - 加快获取MYSQL数据(植入)

转载 作者:行者123 更新时间:2023-11-29 11:54:17 24 4
gpt4 key购买 nike

我是一名学习程序员,我正在尝试学习 PHP。现在的重点是我在新项目中使用了大量的数据库连接。这是很多不同的数据库,需要不同的连接。

有没有人可以让我创建一个函数,让我像这样使用我的代码? Getdata($User, $beerbrand, $sales); 并在我的代码中使用这些变量?我每次都用同样的方式从数据库中获取数据。但它有很多代码,我认为应该可以使其变得更容易一些。

我现在使用的方式:

mysql_connect($host, $user, $password) or die ("cannot connect");
mysql_select_db("$db_name");
$stuff = mysql_query("SELECT * FROM beers ORDER BY ID");
while($frontstuff = mysql_fetch_array($stuff)){
$us = $frontstuff['Beer'];
}

如果您认为这是一个愚蠢的问题,请温柔地向我解释一下。

致以诚挚的问候

最佳答案

<?php 
class Database {

private $connection; //Database Connection Link
private $userName; //Database server User Name
private $password; //Database server Password
private $database; //Database Name
private $hostname; //Name of database server

public function __construct() {
$this->hostname=your servername
$this->userName=yourusername
$this->password=yourpasswrod
$this->database=your bb name
try {
$this->connectlink = mysql_connect($this->hostname,$this->userName,$this->password);
if(!($this->connectlink)) {
throw new Exception("Error Connecting to the Database".mysql_error(),"101");
}
if(!mysql_select_db($this->database, $this->connectlink)) {
throw new Exception("Error Connecting to the Database1".mysql_error(),"101");
}
}catch(Exception $e){
//print_r($dbConfig);
echo $e->getMessage();
}

}

public function __destruct() {
@mysql_close($this->connectlink);
}
}

您可以创建这样的数据库文件来指定连接您可以使用此文件来处理其他页面中的查询。例如

<?php
include_once("database.php");

function __construct(){
$this->db = new Database;
}

public function getstuf($parameter){
$stuff = mysql_query("SELECT * FROM beers ORDER BY ID");
while($frontstuff = mysql_fetch_array($stuff)){
$us = $frontstuff['Beer'];
}
return stuff;
}
}

关于php - 加快获取MYSQL数据(植入),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33473225/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com