OSDN Git Service

Warning: pack(): Type H: illegal hex digit ...
authorhenoheno <henoheno>
Sat, 15 Jan 2005 01:56:05 +0000 (10:56 +0900)
committerhenoheno <henoheno>
Sat, 15 Jan 2005 01:56:05 +0000 (10:56 +0900)
lib/func.php

index 8c167d6..06a69fb 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 // PukiWiki - Yet another WikiWikiWeb clone.
-// $Id: func.php,v 1.26 2005/01/10 04:18:46 henoheno Exp $
+// $Id: func.php,v 1.27 2005/01/15 01:56:05 henoheno Exp $
 //
 // General functions
 
@@ -251,7 +251,8 @@ function encode($key)
 // ¥Ú¡¼¥¸Ì¾¤Î¥Ç¥³¡¼¥É
 function decode($key)
 {
-       return ($key == '') ? '' : substr(pack('H*', '20202020' . $key), 4);
+       // Warning: pack(): Type H: illegal hex digit ...
+       return preg_match('/^[0-9a-f]+$/i', $key) ? pack('H*', $key) : $key;
 }
 
 // [[ ]] ¤ò¼è¤ê½ü¤¯