insert() public static méthode

Inserts $data into an array as defined by $path.
public static insert ( mixed $list, mixed $path, array $data = [] ) : array
$list mixed Where to insert into.
$path mixed A dot-delimited string.
$data array Data to insert.
Résultat array
Exemple #1
0
 /**
  * Write a value to the session.
  *
  * @param string $key Key of the item to be stored.
  * @param mixed $value The value to be stored.
  * @param array $options Options array. Not used for this adapter method.
  * @return closure Function returning boolean `true` on successful write, `false` otherwise.
  */
 public static function write($key, $value, array $options = array())
 {
     if (!static::isStarted() && !static::_start()) {
         throw new RuntimeException("Could not start session.");
     }
     $class = __CLASS__;
     return function ($self, $params) use($class) {
         return $class::overwrite($_SESSION, Set::insert($_SESSION, $params['key'], $params['value']));
     };
 }
Exemple #2
0
 /**
  * Write a value to the session.
  *
  * @param string $key Key of the item to be stored.
  * @param mixed $value The value to be stored.
  * @param array $options Options array. Not used for this adapter method.
  * @return closure Function returning boolean `true` on successful write, `false` otherwise.
  */
 public function write($key, $value, array $options = array())
 {
     if (!$this->isStarted() && $this->_startup() === false) {
         throw new RuntimeException("Could not start session");
     }
     $class = get_called_class();
     return function ($self, $params) use($class) {
         if (!isset($_SESSION)) {
             return false;
         }
         return $class::overwrite($_SESSION, Set::insert($_SESSION, $params['key'], $params['value']));
     };
 }
Exemple #3
0
	public function testInsertAndRemoveWithFunkyKeys() {
		$set = Set::insert(array(), 'Session Test', "test");
		$result = Set::extract($set, '/Session Test');
		$this->assertEqual($result, array('test'));

		$set = Set::remove($set, 'Session Test');
		$this->assertFalse(Set::check($set, 'Session Test'));

		$this->assertTrue($set = Set::insert(array(), 'Session Test.Test Case', "test"));
		$this->assertTrue(Set::check($set, 'Session Test.Test Case'));
	}
Exemple #4
0
 /**
  * Write a value to the session.
  *
  * @param string $key Key of the item to be stored.
  * @param mixed $value The value to be stored.
  * @param array $options Options array. Not used for this adapter method.
  * @return \Closure Function returning boolean `true` on successful write, `false` otherwise.
  */
 public function write($key, $value, array $options = array())
 {
     if (!$this->isStarted() && !$this->_start()) {
         throw new RuntimeException('Could not start session.');
     }
     $self = $this;
     return function ($class, $params) use($self) {
         return $self->overwrite($_SESSION, Set::insert($_SESSION, $params['key'], $params['value']));
     };
 }