本文整理汇总了PHP中Codec::encode方法的典型用法代码示例。如果您正苦于以下问题:PHP Codec::encode方法的具体用法?PHP Codec::encode怎么用?PHP Codec::encode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Codec
的用法示例。
在下文中一共展示了Codec::encode方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: encode
/**
* Function: encode
*
* Convert from internal encoding to the given encoding
*/
function encode($encoding, $errors = false, $normalize = true)
{
// TODO: Normalize the encoding name
if (0 === strcasecmp($encoding, $this->encoding)) {
// No change was requested. Just return the object unchanged
return $this;
}
return Codec::encode($this, $encoding, $errors);
}
示例2: encode
/**
* {@inheritDoc}
*/
public function encode($value)
{
return $this->codec->encode($value);
}
示例3: encode
/**
* このオブジェクトに指定された Codec を使って指定された値をエンコードします.
*
* @param mixed $var エンコード対象の値
* @return mixed 変換結果
*/
public function encode($var)
{
return $this->second->encode($this->first->encode($var));
}
示例4: encode
function encode($encoding, $errors = false)
{
return Codec::encode($this, $encoding, $errors);
}