İşte ben anlamaya çalışıyorum kod pasajı; benim web tasarım sınıfına, ben php tek tırnak 'bir dizge olarak, kelimenin tam anlamıyla her şeyi yorumlamak öğrendim. Ancak, bu kodu:
$kml = array();
$kml[] = '<kml xmlns="http://earth.google.com/kml/2.1">';
$kml[] = ' <Document>';
$kml[] = ' <Style id="hitStyle">';
$kml[] = ' <IconStyle id="hitIcon">';
$kml[] = ' <Icon>';
$kml[] = ' <href>http://vkhovanskaya.net/images/glow.png</href>';
$kml[] = ' </Icon>';
$kmlOutput = $kml[5];
print($kmlOutput);
prints: "http://vkhovanskaya.net/images/glow.png"
and I need it to print <href>http://vkhovanskaya.net/images/glow.png</href>
because it's part of
what will be a kml file (I need the markup tags)
Ben