本文整理汇总了PHP中PHPMailer::EncodeHeader方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPMailer::EncodeHeader方法的具体用法?PHP PHPMailer::EncodeHeader怎么用?PHP PHPMailer::EncodeHeader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPMailer
的用法示例。
在下文中一共展示了PHPMailer::EncodeHeader方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: EncodeHeader
/**
* Use internal moodles own textlib to encode mimeheaders.
* Fall back to phpmailers inbuilt functions if not
*/
public function EncodeHeader($str, $position = 'text')
{
$encoded = textlib::encode_mimeheader($str, $this->CharSet);
if ($encoded !== false) {
$encoded = str_replace("\n", $this->LE, $encoded);
if ($position == 'phrase') {
return "\"{$encoded}\"";
}
return $encoded;
}
return parent::EncodeHeader($str, $position);
}
示例2: EncodeHeader
function EncodeHeader($str, $position = 'text')
{
global $modx;
if ($this->encode_header_method == 'mb_encode_mimeheader') {
return mb_encode_mimeheader($str, $this->CharSet, 'B', "\n");
}
switch ($this->charset) {
case 'japanese-utf8':
case 'japanese-euc':
return $str;
break;
default:
return parent::EncodeHeader($str, $position);
}
}
示例3: EncodeHeader
public function EncodeHeader($str, $position = 'text')
{
if ($position == 'text') {
return $this->convertLocal($str, true);
} else {
return parent::EncodeHeader($str, $position);
}
}
示例4: EncodeHeader
function EncodeHeader($str, $position = 'text')
{
global $modx, $sanitize_seed;
if (strpos($str, $sanitize_seed) !== false) {
$str = str_replace($sanitize_seed, '', $str);
}
if ($this->encode_header_method == 'mb_encode_mimeheader') {
return mb_encode_mimeheader($str, $this->CharSet, 'B', "\n");
} else {
return parent::EncodeHeader($str, $position);
}
}
示例5: EncodeHeader
/**
* overloads PHPMailer's EncodeHeader method to correctly use mb_encode_header() if/when available
* @param string header
* @return string encoded
*/
function EncodeHeader($string, $position = 'text')
{
global $locale;
if (function_exists('mb_encode_header')) {
return mb_encode_mimeheader($string, $locale->getPrecedentPreference('default_export_charset'));
} else {
return parent::EncodeHeader($string, $position);
}
}