2D dizilerle sihirli __ set () yöntemi kullanılarak

2 Cevap php

Ben aşağıdaki kayıt varsa sınıfı:

Class registry 
{
    private $_vars;

    public function __construct()
    {
        $this->_vars = array();
    }

    public function __set($key, $val)
    {
        $this->_vars[$key] = $val;
    }

    public function __get($key)
    {
        if (isset($this->_vars[$key]))
            return $this->_vars[$key];
    }

    public function printAll()
    {
        print "<pre>".print_r($this->_vars,true)."</pre>";
    }
}

$reg = new registry();

$reg->arr = array(1,2,3);
$reg->arr = array_merge($reg->arr,array(4));

$reg->printAll();

Would there be an easier way to push a new item onto the 'arr' array? This code: 'array[] = item' doesn't work with the magic set method, and I couldn't find any useful info with google. Thanks for your time!

2 Cevap

Eğer varsa:

$reg = new registry();
$reg->arr = array(1,2,3);
$reg->arr = 4;

Ve bekliyoruz:

Array
(
    [arr] => Array
        (
            [0] => 1
            [1] => 2
            [2] => 3
            [3] => 4
        )

)

Yapmanız gereken tek şey __set yöntemi güncellemek olduğunu:

public function __set($key, $val){
  if(!array_key_exists($key, $this->_vars)){
    $this->_vars[$key] = array();
  }
  $this->_vars[$key] = array_merge($this->_vars[$key], (array)$val);
}

Sen tanımını değiştirmek gerekir __ bu referans döndürür böylece () olsun:

<?php
public function &__get($key) {
  return $this->_vars[$key];
}
?>