本文整理汇总了PHP中Encoding::encode方法的典型用法代码示例。如果您正苦于以下问题:PHP Encoding::encode方法的具体用法?PHP Encoding::encode怎么用?PHP Encoding::encode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Encoding
的用法示例。
在下文中一共展示了Encoding::encode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testEncode
/**
* Tests the encode() method.
*
* @see \Jyxo\Mail\Encoding::encode()
*/
public function testEncode()
{
$data = file_get_contents($this->filePath . '/email.html');
foreach ($this->encodings as $encoding) {
$encoded = Encoding::encode($data, $encoding, 75, "\n");
$this->assertStringEqualsFile($this->filePath . '/encoding-' . $encoding . '.txt', $encoded);
}
try {
Encoding::encode('data', 'dummy-encoding', 75, "\n");
$this->fail(sprintf('Expected exception %s.', \InvalidArgumentException::class));
} catch (\PHPUnit_Framework_AssertionFailedError $e) {
throw $e;
} catch (\Exception $e) {
// Correctly thrown exception
$this->assertInstanceOf(\InvalidArgumentException::class, $e);
}
}
示例2: encodeString
/**
* Encodes a string using the given encoding.
*
* @param string $string Input string
* @param string $encoding Encoding
* @param integer $lineLength Line length
* @return string
*/
private function encodeString(string $string, string $encoding, int $lineLength = self::LINE_LENGTH) : string
{
return Encoding::encode($string, $encoding, $lineLength, self::LINE_END);
}