if和else里面的函数

时间:2014-03-07 19:35:55

标签: php function class

此代码:

完整代码:http://www.phpkode.com/source/s/textable/textable/textable.class.php

function read_table($b=''){
    $lines = file($this->filename);

    if ($b == 1) {
        $linesa = arsort($lines);
    }


    foreach ( $lines as $row ){
        if (strlen($row) > 1){
            $temp = explode("~", $row);
            $temp[count($temp) - 1] = rtrim($temp[count($temp) - 1]);
            $this->table[] = $temp;
        }
    }
}

我尝试像这样调用类:

$DBnews->table(1);

但它不起作用

1 个答案:

答案 0 :(得分:0)

看起来table属性是一个数组。我想你可能意味着

$DBnews->table[1];

访问数组中的第二个元素。