一个PHP的String类代码
作者:bea
使用方法: 代码如下: $s ='中国'; $os = new String( $s ); echo $os->decode('gbk') ,''; echo $os->decode('gbk')->encode('md5'),''; 代码 代码如下: class String extends stdClass { private $_val =''; public function __construct( $str ='' )
使用方法:
代码如下:
$s ='中国';
$os = new String( $s );
echo $os->decode('gbk') ,'';
echo $os->decode('gbk')->encode('md5'),'';
代码
代码如下:
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_' . $coder;
if( method_exists( $this, $coder ) )
{
return $this->$coder();
}else{
return $this;
}
}
private function encode_md5()
{
return new String( md5( $this->_val ) );
}
private function decode_gbk()
{
return new String( iconv('GBK','UTF-8', $this->_val ) );
}
}
有用 | 无用
代码如下:
$s ='中国';
$os = new String( $s );
echo $os->decode('gbk') ,'';
echo $os->decode('gbk')->encode('md5'),'';
代码
代码如下:
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_' . $coder;
if( method_exists( $this, $coder ) )
{
return $this->$coder();
}else{
return $this;
}
}
private function encode_md5()
{
return new String( md5( $this->_val ) );
}
private function decode_gbk()
{
return new String( iconv('GBK','UTF-8', $this->_val ) );
}
}
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP开发环境配置(MySQL数据库安装图文教程)
- PHP PDO函数库详解
- PHP执行linux系统命令的常用函数使用说明
- asp.net Repeater控件的说明及详细介绍及使用方法
- php 使用post,get的一种简洁方式
- Windows下安装Memcached的步骤说明
- PHP 文件缓存的性能测试
- PHP 中文处理技巧
- php快速url重写更新版[需php 5.30以上]
- PHP CURL模拟GET及POST函数代码
- php file_get_contents函数轻松采集html数据
- 国外比较好的几个的Php开源建站平台小结
- PHP最常用的ini函数分析 针对PHP.ini配置文件
- php allow_url_include的应用和解释
- php strcmp使用说明
- PHP 加密解密内部算法
- PHP 根据IP地址控制访问的代码
- 让PHP开发者事半功倍的十大技巧小结
- php快速url重写 更新版[需php 5.30以上]