The following outputs double quotes. How can I get it to output single quotes?
<?php
$xml_output = "<?xml version=\"1.0\"?>\n";
$xml_output .= "<I song='song'>";
echo $xml_output;
The output is <I song="song" />
Output should be <I song='song' />