Eğer sadece örneğin gibi değişmez bir çok satırlı dize kullanabilirsiniz satır sonlarını farklı ("\ n", "\ r \ n", "\ r") hakkında endişelenmenize gerek yoksa
$xml = '<myxml>
<items>
<item1>blah</item1>
</items>
</myxml>';
veya
$xml = <<< EOT
<myxml>
<items>
<item1>blah</item1>
</items>
</myxml>
EOT;
Ama bu belgeler mutlaka eşdeğer olmadığını akılda tutmak
<myxml><items><item1>blah</item1></items></myxml>
http://www.w3.org/TR/REC-xml/ diyor ki:
2.10 White Space Handling
[...]
An XML processveya MUST always pass all characters in a document that are not markup through to the application. A validating XML processveya MUST also inform the application which of these characters constitute white space appearing in element content.
A special attribute named xml:space may be attached to an element to signal an intention that in that element, white space should be preserved by applications
Whitespaces can be marked as significant veyainsignificant and the consumer can more veyaless choose if it handles them as in-/significant, e.g. via <xsl:strip-space .../>
.