如何從php中具有不同參數的重複呼叫函數中取得值
P粉578680675
P粉578680675 2024-04-03 16:49:35
0
1
541

這是我的結果,但這不是我的期望

Name : YOUR_NAME
Lesson : Algorithm and Programming
Total duration : 3
Room : A17
Lecturer : Ikhsan Permadi
Day : Monday, Thursday
Building : South Block

Name : YOUR_NAME
Lesson : Data Structure 2
Total duration : 2
Room : B10
Lecturer : Faisal Sulhan
Day : Wednesday
Building : North Block

Name : YOUR_NAME
Lesson : Data Structure 2
Total duration : 2
Room : B10
Lecturer : Faisal Sulhan
Day : Wednesday
Building : North Block

我無法在課程中建立數組值,我該如何做那件事,這是我的預期輸出

// Output
// ================================================

// Name: YOUR_NAME
// Lesson: Algorithm and Programming
// Total duration: 3 SKS
// Room: A17
// Lecturer: Ikhsan Permadi
// Day: Monday, Thursday
// Building: South Block


// Name: YOUR_NAME
// Lesson: Artificial Intelligence, Data Structure 2
// Total duration: 5 SKS
// Room: B12, B10
// Lecturer: Ikhsan Permadi, Faisal Sulhan
// Day: Thursday, Wednesday
// Building: North Block


// Name: YOUR_NAME
// Lesson: Algorithm and Programming, Advanced Database, Artificial Intelligence, Data Structure 2
// Total duration: 12 SKS
// Room: A17, B12, B10
// Lecturer: Ikhsan Permadi, Faisal Sulhan
// Day: Monday, Thursday, Tuesday, Wednesday
// Building: South Block, North Block
$student = new Student;
$student->takeLesson('Algorithm and Programming');

$student->getLessonSummary();

$student = new Student;
$student->takeLesson('Artificial Intelligence');
$student->takeLesson('Data Structure 2');

$student->getLessonSummary();

$student = new Student;
$student->takeLesson('Algorithm and Programming');
$student->takeLesson('Advanced Database');
$student->takeLesson('Artificial Intelligence');
$student->takeLesson('Data Structure 2');

$student->getLessonSummary();

class Lesson
{   
    public function getDetail($lessonName)
    {
        $details = [
            [
                'name' => 'Algorithm and Programming',
                'lecturer' => 'Ikhsan Permadi',
                'room' => 'A17',
                'schedule' => [
                    [
                        'day'=> 'Monday',
                        'duration'=> '2 SKS'
                    ],
                    [
                        'day'=> 'Thursday',
                        'duration'=> '1 SKS'
                    ]
                ]
            ],
            [
                'name' => 'Advanced Database',
                'lecturer' => 'Faisal Sulhan',
                'room' => 'B12',
                'schedule' => [
                    [
                        'day'=> 'Tuesday',
                        'duration'=> '2 SKS'
                    ],
                    [
                        'day'=> 'Thursday',
                        'duration'=> '2 SKS'
                    ]
                ]
            ],
            [
                'name' => 'Artificial Intelligence',
                'lecturer' => 'Ikhsan Permadi',
                'room' => 'B12',
                'schedule' => [
                    [
                        'day'=> 'Thursday',
                        'duration'=> '3 SKS'
                    ]
                ]
            ],
            [
                'name' => 'Data Structure 2',
                'lecturer' => 'Faisal Sulhan',
                'room' => 'B10',
                'schedule' => [
                    [
                        'day'=> 'Wednesday',
                        'duration'=> '2 SKS'
                    ]
                ]
            ],
        ];
        foreach ($details as $key => $detail) {
            if ($detail['name'] == $lessonName) {
                return $details[$key];
            }
        }
    }
}

class Room
{
    public function getBuilding($roomName)
    {
        $details = [
            'A17' => 'South Block',
            'B12' => 'North Block',
            'B10' => 'North Block'
        ];

        // sleep(2);

        return $details[$roomName];
    }
}

   
class Student
{
    public function takeLesson($lessonName)
    {   
        $lesson = new Lesson;
        $lesson = $lesson->getDetail($lessonName);

        
        $dataLesson = $lesson['name'];        
        
       
        $totalDuration = array();
        $days = array();
        foreach($lesson['schedule'] as $schedule){
            $totalDuration[] = $schedule['duration'];
            $days[] = $schedule['day'];
        }

        $day = implode(", ", $days);

        $totalDuration = array_sum($totalDuration);

        $building = new Room;
        $building = $building->getBuilding($lesson['room']);
       
        $this->data = [
            "Name" => "YOUR_NAME",
            "Lesson" => $dataLesson,
            "Total duration"=> $totalDuration,
            "Room" => $lesson['room'],
            "Lecturer" => $lesson['lecturer'],
            "Day" => $day,
            "Building" => $building           
            ];
        
    }

    public function getLessonSummary()
    {
        $data = $this->data;
        list() = multiple();

        foreach ($data as $key => $value) {
            if("array" == gettype($value)){
                $value= json_encode($value);
            }
            echo "$key : $value\n";
            echo '<br>';
        }      
        echo '<br>';
        

    }
}

P粉578680675
P粉578680675

全部回覆(1)
P粉166675898

問題出在您的學生班級。

每次呼叫 takeLesson 時,您都會覆寫 data 屬性

所以可以透過使用陣列來儲存它們來解決 像這樣

class Student
{
    private $data = [];

    public function takeLesson($lessonName)
    {   
        $lesson = new Lesson;
        $lesson = $lesson->getDetail($lessonName);

        
        $dataLesson = $lesson['name'];        
        
       
        $totalDuration = array();
        $days = array();
        foreach($lesson['schedule'] as $schedule){
            $totalDuration[] = $schedule['duration'];
            $days[] = $schedule['day'];
        }

        $day = implode(", ", $days);

        $totalDuration = array_sum($totalDuration);

        $building = new Room;
        $building = $building->getBuilding($lesson['room']);
       
        $this->data[] = [
            "Name" => "YOUR_NAME",
            "Lesson" => $dataLesson,
            "Total duration"=> $totalDuration,
            "Room" => $lesson['room'],
            "Lecturer" => $lesson['lecturer'],
            "Day" => $day,
            "Building" => $building           
            ];
        
    }

    public function getLessonSummary()
    {
        $dataArray = $this->data;
        list() = multiple();

        foreach($dataArray as $data) {
            foreach ($data as $key => $value) {
                if("array" == gettype($value)){
                    $value= json_encode($value);
                }
                echo "$key : $value\n";
                echo '
'; } echo '
'; } } }
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板