0

我遇到以下问题:我正在使用以下代码在 php 中创建可视日历

<?php
class Calendar{

    public $numberOfDays;

    function _construct(){
        $this->$numberOfDays =  cal_days_in_month(CAL_GREGORIAN, date("m"), date("Y"));
    } 

public function drawCalendar(){ 

    echo '<div class="month">';
    for( $i=0; $i< $numberOfDays;$i++){     
        echo '<div class="day"></div>';
    }
    echo '</div>';

   }
}
?>

问题是 $numberOfDays 在 for 循环中不可用?我得到一个未定义的变量:numberOfDays 错误。我究竟做错了什么

4

2 回答 2

1

你需要使用:

$this->numberOfDays

$this作为对当前对象实例的引用

于 2013-10-30T22:11:31.667 回答
0

尝试....

$this->numberOfDays

http://www.php.net/manual/en/language.oop5.visibility.php

于 2013-10-30T22:12:35.310 回答