そうですね、PHP で ArrayList を使用することを考えたのは、PHP で非常に便利で、多くの時間を節約できるからです。
PHP で使うのはクールだと思ったので、PHP で arrayList クラスを作成しました。
Class ArrayList
{
public $arrayList;
function __construct()
{
$this->arrayList = array();
}
public function add($element)
{
$this->arrayList[] = $element;
}
public function remove($index)
{
if (is_numeric($index)) {
unset($this->arrayList[$index]);
}
}
public function get($index)
{
return $this->arrayList[$index];
}
}
hashmap
ここで、キーで項目を取得できるように、もっとリスト型が必要であることに気付きました。mysql db 名を取得する必要があるとしましょう$data->hashmap->get("db_name")
。これにより、データベース名の値が返されます。
これを行う方法はありますか?