使用法:
コードをコピーします コードは次のとおりです:
$s ='中国'
$os = new String( $s );
echo $os->decode(' gbk') ,'';
echo $os->decode('gbk')->encode('md5'),'';
code
コードは次のとおりです。次のように: class String extends stdClass
{
private $_val ='';
public function __construct( $str ='' )
{
$this->_val = $str;
public function __toString ()
{
return $this->_val;
}
public function encode( $coder )
{
$coder ='encode_' . $coder;
if(method_exists( $this, $coder ) )
{
return $this-> ;$coder();
}else{
return $this;
}
public function decode( $coder )
{
$coder ='decode_' . ( $this, $coder ) )
{
return $this->$coder();
}else{
return $this;
}
private function encode_md5()
{
return new String( md5( $this->_val ) );
}
プライベート関数 decode_gbk()
{
return new String( iconv('GBK','UTF-8', $this->_val ) );
http://www.bkjia.com/PHPjc/321738.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/321738.html
技術記事
使用法: 次のようにコードをコピーします: $s ='China'; $os = new String( $s ); echo $os-decode('gbk') ,''; encode('md5'),''; コードのコピーコードは次のとおりです...