Jar::offsetSet( $offset,  $value )

Source

public function offsetSet($offset, $value) {
	if ($offset === null) {
		throw new Exception('Object is a dictionary, not a list', 'invalidset');
	}

	$this->cookies[$offset] = $value;
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.