0

我对 OOP 有点陌生,并尝试使用类转换我现有的很多代码。我的第一堂课是“工作”,我的主要脚本调用:

##
## New JOB Instance begins
##
$job = new Job();
$job->validate($job_status,$ber_order_number);
$job->sID($job->ExistingOrNew());
$job->parseJobInfo( $msg_blocks['Job Information']);
$job->parseLocationInfo( $msg_blocks['Location Address']);
$job->parseContactInfo( $msg_blocks['Contact Information']);

在我的 job.class.php 中,我尝试使用构造函数打开连接并为我的数据库建立链接,$_dblink 被定义为私有:

function __construct() {
    $_dblink = new mysqli( $this->_server, $this->_user, $this->_pass, "jobs" );        // connection to the jobs database
    if ( $_dblink->connect_error ) {
        die( 'Connect Error (' . $_dblink->connect_errno . ') ' . $_dblink->connect_error );
    }
}

一旦我点击“ExistingOrNew”方法,我就会收到致命错误:调用非对象上的成员函数 query()

function ExistingOrNew( ) {
    $q = "SELECT id FROM " . jJOBS . " WHERE order_number = '" . $this->order_number . "'";
    #
    echo "<pre>";
    print_r($this);
    echo "</pre>";
    #
    if ( $r = $this->_dblink->query( $q )) {
        while ( $row = $r->fetch_assoc( )) {
            $id = $row['id'];
        }
        $r->free( );
    }
    if ( empty ( $id )) {
        $id = $this->Create( );
    }
    return $id;
}

我不明白为什么我的私有 $_dblink 变量没有延续到后续方法。我错过了什么?

4

1 回答 1

2

您必须使链接成为类成员,以便稍后与$this->运算符一起使用。

function __construct() {
    $this=>_dblink = new mysqli( $this->_server, $this->_user, $this->_pass, "jobs" );        // connection to the jobs database
    if ( $this->_dblink->connect_error ) {
        die( 'Connect Error (' . $_dblink->connect_errno . ') ' . $_dblink->connect_error );
    }
}
于 2012-10-30T16:14:46.583 回答