Skip to content

Instantly share code, notes, and snippets.

@rwebler
Created January 17, 2013 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwebler/4558139 to your computer and use it in GitHub Desktop.
Save rwebler/4558139 to your computer and use it in GitHub Desktop.
Using $this as array
<?php
class obj implements arrayaccess {
private $container = array();
public function __construct() {
$this->container = array(
"one" => 1,
"two" => 2,
"three" => 3,
);
}
public function offsetSet($offset, $value) {
if (is_null($offset)) {
$this->container[] = $value;
} else {
$this->container[$offset] = $value;
}
}
public function offsetExists($offset) {
return isset($this->container[$offset]);
}
public function offsetUnset($offset) {
unset($this->container[$offset]);
}
public function offsetGet($offset) {
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
public function unsetIndex($index) {
unset($this[$index]);
}
}
$obj = new obj;
var_dump(isset($obj["two"]));
var_dump($obj["two"]);
$obj->unsetIndex("two");
var_dump(isset($obj["two"]));
$obj["two"] = "A value";
var_dump($obj["two"]);
$obj[] = 'Append 1';
$obj[] = 'Append 2';
$obj[] = 'Append 3';
print_r($obj);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment