本文整理汇总了PHP中Encoding::system方法的典型用法代码示例。如果您正苦于以下问题:PHP Encoding::system方法的具体用法?PHP Encoding::system怎么用?PHP Encoding::system使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Encoding
的用法示例。
在下文中一共展示了Encoding::system方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
function __construct($from_encoding = null, $convert_html_entities = false)
{
$this->from_encoding = $from_encoding ? $from_encoding : Encoding::system();
$this->encoding_converter = EncodingConverter::create($this->from_encoding, Utf8::NAME);
$this->convert_html_entities = $convert_html_entities;
$this->reset();
}
示例2: encoder
/**
*
* @param type $from
* @return Utf8Encoder
*/
public function encoder($from = null)
{
$from = $from ? $from : Encoding::system();
return new Utf8Encoder($from);
}
示例3: __construct
function __construct($to_encoding = null)
{
$this->to_encoding = $to_encoding ? $to_encoding : Encoding::system();
$this->encoding_converter = EncodingConverter::create(Utf8::NAME, $this->to_encoding);
$this->reset();
}
示例4: encoder
/**
* Returns an encoder that convert from another encoding to this encoding.
*
* @param string|Encoder $from Encoding to convert from, defaults to system encoding.
* @return Converter
*/
public function encoder($from = null)
{
$from = $from ? $from : Encoding::system();
$to = $this;
return EncodingConverter::create($from, $to);
}