Welcome Guest, Not a member yet? Register   Sign In
CI 3 RC Session unset in associative array
#9

Ok, thank you. For those who read this later, the doc change is as followed, quoted from the commit link:
Quote:Previously, this method used to accept an associative array of
+ ``'key' => 'dummy value'`` pairs for unsetting multiple keys. That
+ however makes no sense and you now have to pass *only* the keys, as
+ the elements of an array.
+
+ ::
+
+ // Old
+ $this->session->unset_userdata(array('item' => '', 'item2' => ''));
+
+ // New
+ $this->session->unset_userdata(array('item', 'item2'));
CI 3.1 Kubuntu 19.04 Apache 5.x  Mysql 5.x PHP 5.x PHP 7.x
Remember: Obfuscation is a bad thing.
Clarity is desirable over Brevity every time.
Reply


Messages In This Thread
RE: CI 3 RC Session unset in associative array - by twpmarketing - 02-02-2015, 10:07 AM



Theme © iAndrew 2016 - Forum software by © MyBB