示例#1
0
文件: Data.php 项目: appcia/bind
 /**
  * Remove value by key
  *
  * @param int|string $key
  *
  * @return $this
  */
 public function remove($key)
 {
     $this->check();
     Arrays::clear($this->data, $key);
     $this->encode();
     return $this;
 }