function HtmlToTextTest::stringToHtml
Converts a string to its PHP source equivalent for display in test messages.
Parameters
$text: The text string to convert.
Return value
string An HTML representation of the text string that, when displayed in a browser, represents the PHP source code equivalent of $text.
File
-
core/
modules/ system/ tests/ src/ Unit/ Mail/ HtmlToTextTest.php, line 38
Class
Namespace
Drupal\Tests\system\Unit\MailCode
protected function stringToHtml($text) : string {
return '"' . str_replace([
"\n",
' ',
], [
'\\n',
' ',
], Html::escape($text)) . '"';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.