クラス内でメソッドが呼び出された場合、クラスの1つにあるプライベートプロパティから値をエコーできるようにする必要があります。説明するのは少し難しいので、私にデモをさせてください、そしてうまくいけば誰かが私のために空白を埋めることができます:)
<?php
class test {
private $array['teachers']['classes'][23] = "John";
public function __construct($required_array) {
$this->array['teachers']['classes'][23] = "John";
$this->array['students'][444] = "Mary";
$this->echo_array($required_array);
}
public function echo_array($array) {
// Echo the value from the private $this->array;
// remembering that the array I pass can have either
// 1 - 1000 possible array values which needs to be
// appended to the search.
}
}
// Getting the teacher:
$test = new test(array('teachers','classes',23));
// Getting the student:
$test = new test(array('students',444));
?>
これは可能ですか?