-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Recca Tsai
committed
Jun 17, 2016
1 parent
30df1be
commit 44d8f3c
Showing
7 changed files
with
1,127 additions
and
772 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
<?php | ||
|
||
namespace Recca0120\Twzipcode; | ||
|
||
class Converter | ||
{ | ||
/** | ||
* $charMap. | ||
* | ||
* @var array | ||
*/ | ||
private static $charMap = [ | ||
' ' => ' ', | ||
'!' => '!', | ||
'"' => '"', | ||
'#' => '#', | ||
'$' => '$', | ||
'%' => '%', | ||
'&' => '&', | ||
''' => "'", | ||
'(' => '(', | ||
')' => ')', | ||
'*' => '*', | ||
'+' => '+', | ||
',' => ',', | ||
'-' => '-', | ||
'.' => '.', | ||
'/' => '/', | ||
'0' => '0', | ||
'1' => '1', | ||
'2' => '2', | ||
'3' => '3', | ||
'4' => '4', | ||
'5' => '5', | ||
'6' => '6', | ||
'7' => '7', | ||
'8' => '8', | ||
'9' => '9', | ||
':' => ':', | ||
';' => ';', | ||
'<' => '<', | ||
'=' => '=', | ||
'>' => '>', | ||
'?' => '?', | ||
'@' => '@', | ||
'A' => 'A', | ||
'B' => 'B', | ||
'C' => 'C', | ||
'D' => 'D', | ||
'E' => 'E', | ||
'F' => 'F', | ||
'G' => 'G', | ||
'H' => 'H', | ||
'I' => 'I', | ||
'J' => 'J', | ||
'K' => 'K', | ||
'L' => 'L', | ||
'M' => 'M', | ||
'N' => 'N', | ||
'O' => 'O', | ||
'P' => 'P', | ||
'Q' => 'Q', | ||
'R' => 'R', | ||
'S' => 'S', | ||
'T' => 'T', | ||
'U' => 'U', | ||
'V' => 'V', | ||
'W' => 'W', | ||
'X' => 'X', | ||
'Y' => 'Y', | ||
'Z' => 'Z', | ||
'[' => '[', | ||
'\' => '\\', | ||
']' => ']', | ||
'^' => '^', | ||
'_' => '_', | ||
'`' => '`', | ||
'a' => 'a', | ||
'b' => 'b', | ||
'c' => 'c', | ||
'd' => 'd', | ||
'e' => 'e', | ||
'f' => 'f', | ||
'g' => 'g', | ||
'h' => 'h', | ||
'i' => 'i', | ||
'j' => 'j', | ||
'k' => 'k', | ||
'l' => 'l', | ||
'm' => 'm', | ||
'n' => 'n', | ||
'o' => 'o', | ||
'p' => 'p', | ||
'q' => 'q', | ||
'r' => 'r', | ||
's' => 's', | ||
't' => 't', | ||
'u' => 'u', | ||
'v' => 'v', | ||
'w' => 'w', | ||
'x' => 'x', | ||
'y' => 'y', | ||
'z' => 'z', | ||
'{' => '{', | ||
'|' => '|', | ||
'}' => '}', | ||
'~' => '~', | ||
]; | ||
|
||
/** | ||
* $str. | ||
* | ||
* @var string | ||
*/ | ||
private $str; | ||
|
||
public function __construct($str) | ||
{ | ||
$this->str = $str; | ||
} | ||
|
||
/** | ||
* full. | ||
* | ||
* @return string | ||
*/ | ||
public function full() | ||
{ | ||
return strtr($this->str, array_flip(self::$charMap)); | ||
} | ||
|
||
/** | ||
* half. | ||
* | ||
* @return string | ||
*/ | ||
public function half() | ||
{ | ||
return strtr($this->str, self::$charMap); | ||
} | ||
|
||
/** | ||
* toFull. | ||
* | ||
* @param string $str | ||
* | ||
* @return string | ||
*/ | ||
public static function toFull($str) | ||
{ | ||
return (new static($str))->full(); | ||
} | ||
|
||
/** | ||
* toHalf. | ||
* | ||
* @param string $str | ||
* | ||
* @return string | ||
*/ | ||
public static function toHalf($str) | ||
{ | ||
return (new static($str))->half(); | ||
} | ||
} |
Oops, something went wrong.