コード例 #1
0
ファイル: MiscTest.php プロジェクト: adhocore/dsa
 /**
  * @depends testBase64loader
  * @expectedException \InvalidArgumentException
  */
 public function testBase65decodeException()
 {
     base64decode(new \stdClass());
 }
コード例 #2
0
function kleeja_base64_decode($str = '')
{
    return function_exists('base64_decode') ? base64_decode($str) : base64decode($str);
}
コード例 #3
0
ファイル: PakomatoCommon.php プロジェクト: nikuta/paczkomaty
 protected function ajax_getSenderDataAction()
 {
     $this->simpleJson(true, "", unserialize(base64decode(Configuration::get(self::KONFIG_PREFIX . self::KONFIG_DANE_NADAWCY))));
 }