English 中文(简体)
• 如何纠正在营地连接上的错误
原标题:How to correct error on php connection Call to undefined function connect()

我知道,我知道。 我可以更新。 它使用在共享托管服务机上安装的Pear db。

这是我与公共卫生和社会福利部合作以来的一分钟,但我认为我这样做是正确的,但却没有工作。

页: 1 Uncault Error: Call to un Defin functionlink()

我的联络队

require_once( DB.php );

$db        = getDB();
$host      = getHost();
$username  = getUserName();
$password  = getPassword();

  // Data Source Name: This is the universal connection string
$dsn = "mysql://$username:$password@$host/$db";
$db = DB::connect($dsn);

在当地<代码>DB.php:

class DB
{
  ...
  function &connect($dsn, $options = array()) {
  ...

我的第一个错误是要求静态功能,这种功能是固定的。 因此,我改变了......。

$db = DB::connect($dsn);
to
$db_connect = new DB();
$dbSQL = $db_connect->connect($dsn);

但是,现在我错了:Call to un Defin functionLink()。 我没有这样做。 我试图删除<代码>& on Function &joint,但无。

我失踪了什么?

问题回答

在你的PHP代码中,你重新尝试使用<条码><>>。 作为<代码>固定方法的方法 DB等级,但似乎是根据您提供的代码采用的一种实例方法。 因此,你应当树立一个<代码>的例子。 DB category, 然后称作link 方法。 在这方面,你可以做些什么:

require_once( DB.php );

// Assuming DB::connect is an instance method
$dbConnect = new DB();
$db = $dbConnect->connect($dsn);

// Now you can use $db for your database operations

该守则建立了<代码>的范例。 DB <$dbConnect, 然后将link方法按该分类建立数据库链接。 这应当解决你所遭遇的“完全与不确定的职能联系”错误。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签