XSL üzeri önbelleğe XML dönüştürmek nasıl?

2 Cevap php

Ben uzak bir XML dosyasını önbelleğe bir PHP komut dosyası var. Ben XSL önbelleğe önce dönüştürmek istiyorum, ama bunun nasıl yapılacağını bilmiyorum:

<?php

   // Set this to your link Id

   $linkId = "0oiy8Plr697u3puyJy9VTUWfPrCEvEgJR";

   // Set this to a directory that has write permissions

   // for this script

   $cacheDir = "temp/";

   $cachetime = 15 * 60; // 15 minutes

   // Do not change anything below this line

   // unless you are absolutely sure

   $feedUrl="http://mydomain.com/messageService/guestlinkservlet?glId=";

   $cachefile = $cacheDir .$linkId.".xml";

   header('Content-type: text/xml');

   // Send from the cache if $cachetime is not exceeded

   if (file_exists($cachefile) && (time() - $cachetime

      < filemtime($cachefile)))

   {

      include($cachefile);
      echo "<!-- Cached ".date('jS F Y H:i', filemtime($cachefile))." -->\n";
      exit;

   }

   $contents = file_get_contents($feedUrl . $linkId);

   // show the contents of the XML file

   echo $contents;

   // write it to the cache

   $fp = fopen($cachefile, 'w');

   fwrite($fp, $contents);

   fclose($fp);

?>

Bu onu dönüştürmek için kullanmak istediğiniz XSL dizedir:

<xsl:template match="/">
    <kml xmlns="http://www.opengis.net/kml/2.2">
        <Document>
            <xsl:apply-templates select="messageList" />
        </Document>
    </kml>
</xsl:template>

<xsl:template match="messageList">
    <name>My Generated KML</name>
    <xsl:apply-templates select="message" />
</xsl:template>

<xsl:template match="message">
    <Placemark>
        <name><xsl:value-of select="esnName" /></name>
        <Point>
            <coordinates>
                <xsl:value-of select="latitude" />,<xsl:value-of select="longitude" />
            </coordinates>
        </Point>
    </Placemark>
</xsl:template>

Ben aslında XML girişi dönüşümü ve tasarruf / KML formatında dönmek istiyorum. Birisi bu senaryoyu ayarlamanıza yardımcı olur musunuz? Bu bana verilen ve ben ona biraz yeni duyuyorum edildi.

2 Cevap

$domOrigin = new DOMDocument('1.0');
$domOrigin->loadXML($contents);

$domXsl = new DOMDocument('1.0');
$domXsl->load('/path/to/stylesheet.xsl',LIBXML_NOCDATA);

$processor = new XSLTProcessor();
$processor->importStylesheet($domXsl);

file_put_contents($cachfile, $processor->transformToXml($domOrigin)); 

Hasta bu :-) entegre size bırakıyorum

XSL eklentisini kullanabilirsiniz, burada bir örnek var:

http://www.php.net/manual/en/book.xsl.php#90510

Lütfen file_get_contents ile çağrı replace:

$XML = new DOMDocument(); 
$XML->load( $feedUrl . $linkId ); 

/* 
this is the same as the example:
*/
$xslt = new XSLTProcessor(); 
$XSL = new DOMDocument(); 
$XSL->load( $xslFile ); 
$xslt->importStylesheet( $XSL ); 

sonra file_put_contents( $cachefile, $xslt->transformToXML( $XML ) ); ile "baskı" satırı değiştirin