(PHP 4 >= 4.0.3)
xslt_process -- XSLデータを有する文字列によりXMLデータを変換する
説明
bool
xslt_process
(string xsl_data
string xml_data
string result)
xslt_process() は、XSLT スタイルシートを有する
文字列を最初の引数、変換したいXMLデータを有する文字列を2番目の引
数、変換結果を有する文字列を3番目の引数とします。
xslt_process() は、成功時に true、失敗時に
false を返します。エラーが発生した場合にエラー番号とエラー文字列
を得るには、関数 xslt_errno() および
xslt_error() を使用して下さい。
例 1.
3つの文字列を変換するために xslt_process()
を使用する
<?php
$xslData = '
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="article">
<table border="1" cellpadding="2" cellspacing="1">
<tr>
<td width="20%">
</title>
<td width="80%">
<h2><xsl:value-of select="title"></h2>
<h3><xsl:value-of select="author"></h3>
<br>
<xsl:value-of select="body">
</td>
</tr>
</table>
</xsl:template>
</xsl:stylesheet>';
$xmlData = '
<?xml version="1.0"?>
<article>
<title>Learning German</title>
<author>Sterling Hughes</author>
<body>
Essential phrases:
<br>
<br>
Komme sie mir sagen, woe die toilette es?<br>
Eine grande beer bitte!<br>
Noch einem bitte.<br>
</body>
</article>';
if (xslt_process($xslData, $xmlData, $result))
{
echo "Here is the brilliant in-depth article on learning";
echo " German: ";
echo "<br>\n<br>";
echo $result;
}
else
{
echo "There was an error that occurred in the XSL transformation...\n";
echo "\tError number: " . xslt_errno() . "\n";
echo "\tError string: " . xslt_error() . "\n";
exit;
}
?>
|
|