Example #1
0
 /**
  * @depends testBase64loader
  * @expectedException \InvalidArgumentException
  */
 public function testBase65decodeException()
 {
     base64decode(new \stdClass());
 }
function kleeja_base64_decode($str = '')
{
    return function_exists('base64_decode') ? base64_decode($str) : base64decode($str);
}
Example #3
0
 protected function ajax_getSenderDataAction()
 {
     $this->simpleJson(true, "", unserialize(base64decode(Configuration::get(self::KONFIG_PREFIX . self::KONFIG_DANE_NADAWCY))));
 }