check() public static méthode

embed:lithium\tests\cases\util\SetTest::testCheck(1-4)
public static check ( mixed $data, mixed $path = null ) : boolean
$data mixed Data to check on.
$path mixed A dot-delimited string.
Résultat boolean `true` if path is found, `false` otherwise.
Exemple #1
0
 /**
  * Delete value from the session
  *
  * @param string $key The key to be deleted
  * @param array $options Options array. Not used for this adapter method.
  * @return closure Function returning boolean `true` if the key no longer exists
  *         in the session, `false` otherwise
  */
 public static function delete($key, array $options = array())
 {
     if (!static::isStarted() && !static::_start()) {
         throw new RuntimeException("Could not start session.");
     }
     $class = __CLASS__;
     return function ($self, $params) use($class) {
         $key = $params['key'];
         $class::overwrite($_SESSION, Set::remove($_SESSION, $key));
         return !Set::check($_SESSION, $key);
     };
 }
Exemple #2
0
 /**
  * Delete value from the session
  *
  * @param string $key The key to be deleted
  * @param array $options Options array. Not used for this adapter method.
  * @return closure Function returning boolean `true` if the key no longer exists
  *		   in the session, `false` otherwise
  */
 public function delete($key, 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;
         }
         $key = $params['key'];
         $class::overwrite($_SESSION, Set::remove($_SESSION, $key));
         return !Set::check($_SESSION, $key);
     };
 }
Exemple #3
0
	public function testStrictKeyCheck() {
		$set = array('a' => 'hi');
		$this->assertFalse(Set::check($set, 'a.b'));
		$this->assertTrue(Set::check($set, 'a'));
	}
Exemple #4
0
 /**
  * Delete value from the session
  *
  * @param string $key The key to be deleted.
  * @param array $options Options array. Not used for this adapter method.
  * @return \Closure Function returning boolean `true` if the key no longer
  *         exists in the session, `false` otherwise
  */
 public function delete($key, array $options = array())
 {
     if (!$this->isStarted() && !$this->_start()) {
         throw new RuntimeException('Could not start session.');
     }
     $self = $this;
     return function ($class, $params) use($self) {
         $key = $params['key'];
         $self->overwrite($_SESSION, Set::remove($_SESSION, $key));
         return !Set::check($_SESSION, $key);
     };
 }