我正在关注OOP的教程:http://www.phptuts.nl/view/45/8/
但是在下面的代码中,第2行似乎有一个错误。因为它看起来并不像第二行那样,它必须在脚本的某个地方,我做错了什么? (新的)。
以下是代码:
<?php
public function draw() {
echo '<table border="1">'.PHP_EOL; // Begin van de tabel, border voor de duidelijkheid
foreach($this->_rows as $row) {
echo '<tr>'.PHP_EOL;
foreach($row->getCells() as $cell) {
echo '<td>'.$cell->getContent().'</td>'.PHP_EOL;
}
echo '</tr>'.PHP_EOL;
}
echo '</table>'.PHP_EOL;
}
?>
答案 0 :(得分:2)
public
只能在课堂上使用。该功能不在课堂上。删除它,你的错误应该消失。