It is possible that the xslt_process call can expose information about Apache's installation location if null values are passed to the signature.
for example:
<?php
$xslt = xslt_create();
$result = xslt_process($xslt, null, null);
echo $result;
?>
The error you will recieve is:
Warning: Sablotron error on line none: cannot open file 'C:\Program Files\Apache Group\Apache2/' in C:\webroot\htdocs\projects\www\sales\test.php on line 4
Although trying to read a 'null' XML file and 'null' XSL stylesheet are rather silly, consider an attacker tries to upload an arbitrary file and execute it with similar code.
the user may then gain enough information to attack your site.
xslt_process
(PHP 4 >= 4.0.3)
xslt_process — XSLT による変換を行う
説明
xslt_process()関数は、XSLT 拡張モジュールの中心となる関数です。 ほとんど全ての型の入力ソース (コンテナ) を用いて XSLT 変換を実行可能です。 これを実現しているのが、引数バッファです。 引数バッファとは、Sablotron XSLT プロセッサ (現在、この拡張モジュールがサポートする惟一の XSLT プロセッサ) から得た概念です。 入力コンテナは処理する文章を '含んでいる' ファイル名がデフォルトです。
パラメータ
- xh
-
xslt_create() で作成した XSLT プロセッサリンク ID。
- xmlcontainer
-
XML ファイルへのパス、あるいは XML 引数用のプレースホルダ。
- xslcontainer
-
XSL ファイルへのパス、あるいは XML 引数用のプレースホルダ。
- resultcontainer
-
結果コンテナは、変換された文章のためのファイル名が デフォルトです。もし結果コンテナが指定されていない場合 - 例えば NULL - 、結果が返されます。
- arguments
-
XML や XSLT のファイル名を xslt_process() 関数に指定するかわりに、"引数プレースホルダ" を使用することもできます。これは、配列 arguments に指定した内容で置き換えられます。
- parameters
-
任意のトップレベルパラメータの配列。これが XSLT ドキュメントに渡されます。XSL ファイル内でこれらのパラメータにアクセスするには <xsl:param name="parameter_name"> を使用します。 パラメータは UTF-8 でエンコードする必要があります。 その値は文字列として Sablotron プロセッサが処理します。つまり、XSLT ドキュメントのパラメータには ノードセットを渡すことはできないということです。
また、arguments 配列を通じてコンテナを設定することができます (以下参照)。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。 結果コンテナを指定していない場合は結果を返します。
変更履歴
| バージョン | 説明 |
|---|---|
| 4.0.6 | この関数は xmlcontainer もしくは xslcontainer で XML 文字列を受け付けなくなりました。 XML を含む文字列を渡すと、0.95とそれ以降の Sablotron バージョンでセグメンテーションフォルトを引き起こします。 |
例
xslt_process()関数で変換する最も簡単な方法は、 XML ファイルを XSLT ファイルで変換し、結果を新しい XML ドキュメント (または HTML ドキュメント) を含む3番目のファイルに出力することです。 これを Sablotron で行うのはとても簡単です。
例1 XML ファイルと XSL ファイルを新規 XML ファイルに変換するために xslt_process() を使用する
<?php
// 新規 XSLT プロセッサを割り当てる
$xh = xslt_create();
// 文章を処理する
if (xslt_process($xh, 'sample.xml', 'sample.xsl', 'result.xml')) {
echo "SUCCESS, sample.xml was transformed by sample.xsl into result.xml";
echo ", result.xml has the following contents\n<br />\n";
echo "<pre>\n";
readfile('result.xml');
echo "</pre>\n";
} else {
echo "Sorry, sample.xml could not be transformed by sample.xsl into";
echo " result.xml the reason is that " . xslt_error($xh) . " and the ";
echo "error code is " . xslt_errno($xh);
}
xslt_free($xh);
?>
この機能は優れていますが、特にWeb環境では、結果を直接出力したい場 合があります。そこで、xslt_process()の3番目の 引数を省略した場合(またはその引数にNULL値を指定した場合)、ファイ ルに書き込む替わりに自動的に XSLT 変換後の出力を返します。
例2 XML ファイルと XSL ファイルを結果XMLデータを含む変数に変換するために xslt_process() を使用する
<?php
// 新規 XSLT プロセッサを割り当てる
$xh = xslt_create();
// 文章を処理し、変数 $result に結果を返す
$result = xslt_process($xh, 'sample.xml', 'sample.xsl');
if ($result) {
echo "SUCCESS, sample.xml was transformed by sample.xsl into the \$result";
echo " variable, the \$result variable has the following contents\n<br />\n";
echo "<pre>\n";
echo $result;
echo "</pre>\n";
} else {
echo "Sorry, sample.xml could not be transformed by sample.xsl into";
echo " the \$result variable the reason is that " . xslt_error($xh);
echo " and the error code is " . xslt_errno($xh);
}
xslt_free($xh);
?>
上の二つのケースは、XSLT変換の最も簡単な場合です。これは、多くの 場合には通用しますが、時々、データベースまたはソケットのような外 部ソースから XML と XSLT コードを取得する場合があります。このような場 合、XML または XSLT データを変数に有することになります。 実用アプリケーションでは、これらをファイルにダンプする際のオーバー ヘッドは大きいと言えます。このような場合こそ、XSLT "argument" 構文が役に立ちます。 xslt_process()関数の XML および XSLT 引数としてファ イルの替わりに引数配列(xslt_process()関数の5番 目のパラメータ)で指定した値に置換される"argument place holders"を指定することが可能です。 以下にファイルを全く使用せずに XML および XSLT を結果変数に処理する例 を示します。
例3 XML データを含む変数と XSLT データを含む変数を XML データ出力結果を 含む変数に変換するためにxslt_process()を使用 する
<?php
// $xml と $xsl は XML データと XSL データを含む
$arguments = array(
'/_xml' => $xml,
'/_xsl' => $xsl
);
// 新規 XSLT プロセッサを割り当てる
$xh = xslt_create();
// 文章を処理する
$result = xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments);
if ($result) {
echo "SUCCESS, sample.xml was transformed by sample.xsl into the \$result";
echo " variable, the \$result variable has the following contents\n<br />\n";
echo "<pre>\n";
echo $result;
echo "</pre>\n";
} else {
echo "Sorry, sample.xml could not be transformed by sample.xsl into";
echo " the \$result variable the reason is that " . xslt_error($xh);
echo " and the error code is " . xslt_errno($xh);
}
xslt_free($xh);
?>
例4 PHP 変数を XSL ファイルに渡す
<?php
// XML 文字列
$xml = '<?xml version="1.0"?>
<para>
change me
</para>';
// XSL 文字列
$xsl = '
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="ISO-8859-1" indent="no"
omit-xml-declaration="yes" media-type="text/html"/>
<xsl:param name="myvar"/>
<xsl:param name="mynode"/>
<xsl:template match="/">
My PHP variable : <xsl:value-of select="$myvar"/><br />
My node set : <xsl:value-of select="$mynode"/>
</xsl:template>
</xsl:stylesheet>';
$xh = xslt_create();
// 2番目のパラメータは文字列として解釈される
$parameters = array (
'myvar' => 'test',
'mynode' => '<foo>bar</foo>'
);
$arguments = array (
'/_xml' => $xml,
'/_xsl' => $xsl
);
echo xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments, $parameters);
?>
上の例の出力は以下となります。
My PHP variable : test<br> My node set : <foo>bar</foo>
注意
注意: Windows を使用している場合、 file:// がパスの前に必要であることに注意してください。
xslt_process
28-Jun-2007 03:05
To let xslt_process() work correctly, you have to set xslt_set_base()
Here is my example code (Tested on: Windows 2000/XAMPP 1.4.15/PHP 4.4.0/Sablotron 1.0.2):
<?php
$xh = xslt_create();
$filebase = 'file://' . getcwd () . '/test/';
xslt_set_base($xh,$filebase);
$xml = 'document.xml';
$xsl = 'document.xsl';
$resultdoc = 'result.html';
$parameters = array('mynode' => '<foo>bar</foo>','sample' => 'A sample value');
$result = xslt_process($xh,$xml,$xsl,$resultdoc,NULL,$parameters);
if (!$result)
{
die(sprintf("Cannot process XSLT document [%d]: %s",xslt_errno($xh), xslt_error($xh)));
}
echo "Result: ".$result."<br />";
xslt_free($xh);
?><a href="test/<?=$resultdoc?>">The result document</a><?
?>
04-Apr-2006 11:46
After experiencing an ”xml declaration not at start of external entity” error with XML recieved from a remote server. The server now sends response headers back and these were getting in the way.
This fixed it:
$fp = fsockopen($queryhost, 80);
if($fp) {
fputs($fp, $header);
while(!feof($fp)) {
$xml .= fgets($fp, 128);
}
}
fclose($fp);
//ensure string starts with the XML declaration.
$xml = substr($xml, strpos($xml, “<?xml”) );
$xsltproc = xslt_create();
$result = xslt_process($xsltproc,‘arg:/_xml’, $xsltfile, NULL, array(‘/_xml’ => $xml));
just to let you know an an apostrophe can generate a "not well-formed (invalid token)" error message. I spent a couple of hours to find it, until i found another user with similar problem:
http://www.feedforall.com/forum/viewtopic.php?t=116&view=next
lets hope that hosting providers will soon adopt php5
31-Mar-2005 03:17
I found using the output buffer to be efficient, when dealing with php scripts, with xml data.
<?
$xh = xslt_create();
ob_start();
include('main.php'); //main.php contains php and xml
$xml_file = ob_get_contents();
ob_end_clean();
$arguments = array('/_xml' => $xml_file);
$result = xslt_process($xh, 'arg:/_xml', 'index.xsl', NULL, $arguments);
if (!$result) echo 'XSLT processing error: ' .xslt_error($xh) ;
else echo $result;
xslt_free($xh);
?>
08-Aug-2004 12:19
In response to "twa at carlbro dot dk" above I have finally solved how to combine two XML sources and one XSL stylesheet. The above comment was nearly right,
for the php
<?php
xh = xslt_create();
xslt_set_base($xh,"file://c:\inetpub\wwwroot\yourwebsite\");
$arguments = array('/_xml' => $xmlSingle, '/_xsl'=>$xsl, '/xml2'=>$xml_rates);
$xslResult = xslt_process($xh, 'arg:/_xml', 'single_availability_filter.xsl', NULL, $arguments,$parameters);
?>
Please note that I have put in a blank variable "/_xsl => $xsl", the actuall XSL file is listed directly in the xslt_process fucntion.
Note that we have a third XML data source which is called xml2 and is set a value $xml_rates. In your XSL stylesheet you can now call this XML data via the following line
<xsl:variable name="filter_rates" select="document('arg:/xml2')/RackRates"/>
the missing link was putting in the the arg:/
Also please note that I am using xslt_set_base which set the base filepath for all your XSL documents.
Hope this helps.
Phelim
18-May-2004 01:24
The xslt_ functions no longer work in PHP/5.0; the XSLT extension has been removed. To apply an XSL transformation to an XML document, you must use DomDocument (from DOM) and XsltProcessor (from XSL):
<?
$xml = new DomDocument();
$xml->load('foo.xml');
$xsl = new DomDocument;
$xsl->load('foo.xsl');
$proc = new xsltprocessor();
$proc->importStyleSheet($xsl);
echo($proc->transformToXML($xml));
?>
08-Feb-2004 06:00
By combining some of the user added notes and some experimentation, here's how I finally got the query string broken down and passed in as top-level parameters:
With a little more effort, this could be turned into a completely generic transform script - i.e. by adding query parms for the xml and xsl files also and excluding them from the $params array (though this lat bit may not be necessary).
Thanks to all those other users whose tips make up most of this solution!
<?php
// Process query string to $params array
$vars = explode("&", $_SERVER['QUERY_STRING']);
for ($i=0;$i<=count($vars);$i++) {
$var = explode("=", $vars[$i]);
$params[$var[0]] = $var[1];
}
// Fire up the engine
$xslt = xslt_create();
$xml = 'test.xml';
$xsl = 'test.xsl';
$result = xslt_process($xslt, $xml, $xsl, NULL, array(), $params);
if ($result) {
echo $result;
}
else {
print "Error:" . xslt_errno($xslt);
}
xslt_free($xslt);
?>
23-Jan-2004 04:45
Figuring out the syntax to get parameters in was difficult but this works for me:
// Allows user to pass argument from URL as script.php?foo=VALUE
$xml = file_get_contents ('n.xml') ;
$xsl = file_get_contents ('n.xsl') ;
// Perform the transformation
$args = array (
'/_xml' => $xml,
'/_xsl' => $xsl
);
$params = array (
'foo' => $foo
) ;
$html = xslt_process($xsltproc, 'arg:/_xml', 'arg:/_xsl', NULL, $args, $params);
then in the XSL FILE:
--------------------------
<xsl:param name="foo"/>
<xsl:template match="/">
<root>
<test><xsl:value-of select="$foo"/></test>
<xsl:apply-templates/></root>
</xsl:template>
Note: the param definition and the '$' dollar sign
10-Jun-2003 12:57
Thanks, Martin !
As a matter of fact, your way of doing is probably more logical than mine :)
The point is that scheme handler strangely adds a slash to your URI , if it doesn't start by any slash.
So if you call : document('http:www.url.com',page/@url)
...then $rest gets /www.url.com
But if you call : document('http://www.url.com',page/@url)
...then $rest gets //www.url.com
Another approach could consist in enclosing the scheme "http" in the XML attribute : <page url="http://www.w3.org/TR/REC-xml">
and simply doing a : $file = fopen("http:".$rest,"r");
It all depends on the context...
See also :
http://archive.gingerall.cz/archives/public/sablot2003/msg00598.html
27-May-2003 11:06
I had a little trouble making the http scheme handler work until I removed the line with the strip function and then changed the fopen
from 'http://' to 'http:' -
$file = fopen("http:".$rest,"r");
Regards // Martin
03-Apr-2003 02:14
The XSLT document() function can only open local files.
But thanks to the Sablotron handlers, you can easely write an http-handler (or even ftp- !!).
This sample opens a particular XHTML page on the W3C, and will parse it to get the TITLE tag content.
The interesting point, here, is that the url to open (www.w3.org/TR/REC-xml) is defined... inside an XML document :)
// XML content :
$xml='<?xml version="1.0"?>
<page url="www.w3.org/TR/REC-xml">W3C Recommendation page</page>';
// XSL content :
$xsl='<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="ISO-8859-1" indent="no" omit-xml-declaration="yes" standalone="yes" media-type="text/html"/>
<xsl:template match="/">
The title is : <xsl:value-of select="document(concat(\'http:\',page/@url))/html/head/title"/>
</xsl:template>
</xsl:stylesheet>';
// TRANSFORMATION :
function handGetAll($processor,$scheme,$rest) {
$rest=substr($rest,1);
switch($scheme) {
case 'http':
$file = fopen("http://".$rest,"r");
while(!feof($file))
$c .= fgets($file, 1024);
fclose($file);
return $c;
break;
}
}
$xh = xslt_create();
xslt_set_scheme_handlers($xh,array("get_all" => "handGetAll"));
echo xslt_process($xh,'arg:/_xml', 'arg:/_xsl',NULL,array("/_xml"=>$xml,"/_xsl"=>$xsl));
xslt_free($xh);
14-Jan-2003 06:12
Hi... I'm back with the result :)
After a good discussion on the official Sablotron / PHP mailing list I found out how to fix the problem I had with PHP 4.3.0. So now I will just summarize it here. The full discussion can be found online on this address:
http://archive.gingerall.cz/archives/public/sab-php/msg00252.html
The problem is actually an error in my code (huh? I thought I wrote error-free code). In my XSLT file I use the document() method provided by Sablotron. In my previous example I use this syntax:
document('foobar')
The real syntax is actually:
document('arg:/foobar')
The reason why this worked in previous versions of PHP was due to an error in the Sablotron lib (anyway so I think).
Another thing that I would like to share is the syntax of the 2nd, 3rd and 5th argument in the xslt_process() method. In the official examples on this page the names "_xml" and "_xsl" is used. But according to the Sablotron people any name can be used. And if you are wondering if you need the preceding "/" or not - then Lenar Lhmus from the sab-php mailing list told me it would be wise to use it. Normally it works either way, but it is always the best thing to use the slash. For the full discussion on this subject see the other thread at:
http://archive.gingerall.cz/archives/public/sab-php/msg00260.html
/watson
13-Jan-2003 09:13
It seems to be undocumented how to get the XSL parser to use two XML files at the same time to produce the output. It is possible though. Here is how it's done with the XML data in a variable:
First you need to change the 5th argument.
$xh = xslt_create();
$args = array('/_xml'=>$xml1, '/_xsl'=>$xsl, 'xml2'=>$xml2);
$result = xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $args);
Inside the XSLT document you then need to do this:
<xsl:template match="/">
<root>
<foo>
<xsl:value-of select="/foo" />
</foo>
<bar>
<xsl:value-of select="document('xml2')/bar" />
</bar>
</root>
</xsl:template>
This creates a XML result containing a root node called "root" containing two nodes. One called "foo" with the content of the root node in $xml1 and one called "bar" with the content of the root node in $xml2.
In the $args array I don't know if it is best to write "'xml2'=>$xml2" or "'/xml2'=>$xml2". Both work. I think it has something to do with the level of the argument (/level1/level2/level3). Maybe this site reveals the true syntax:
http://www.gingerall.com/charlie/ga/act/gadoc.act?pg=sablot#i__1029
I don't know if there is another - more elegant way - to do this. But I can't find any documentation on it.
For the moment I can't get this to work in PHP 4.3.0/Windows because there seems to be a problem with the Sablotron that is shipped with this version (I have not tried the UNIX version though). I think a new version of the sablot.dll will fix this problem. But for the moment I can't seem to get PHP to work with this new version. If anyone knows how to do this then please send me a mail. I'll post anything that I find out.
/watson
05-Jan-2003 03:43
An important detail if you want to use the last argument to include parameters to the template:
<?PHP
xslt_process($xslt, 'foo.xml', 'foo.xslt', NULL, array(), array('foo' => 'FOO'));
?>
In the xsl file:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="foo"/>
<xsl:template match="/">
<xsl:value-of select="foo"/>
.........
Note the <xsl:param name="foo"/> is specified *outside* the template tag, but can be referenced inside it.
11-Nov-2002 07:34
Okay, now this is a neat function once you play around with it
bit...we're basically using it in two ways...one to preview data
from a mysql database, and the other to actually publish the
output to a .htm file. The following example shows us grabbing
data from the database and then using the xslt_process() function
to combine this data file a .xsl file residing on the server...
<?php
include("../../includes/connect_to_db.inc");
$query = mysql_query("select * from mytbl where mytbl_id=1");
$mydata = mysql_fetch_array($query);
$xmlString = '<?xml version="1.0"?><data>';
$xmlString .= '<mytbl_id>'.$mydata["mytbl_id"].'</mytbl_id>';
$xmlString .= "<mytbl_title>".$mydata["mytbl_title"]."</mytbl_title>";
$xmlString .= "<mytbl_filename>".
$mydata["mytbl_filename"]."</mytbl_filename>";
$xmlString .= "</data>";
//create instance of xslt parser
$xh = xslt_create();
//store xmlString in an array using a key '/_xml'
$arguments = array('/_xml' => $xmlString);
//to write data to a file
xslt_process($xh, 'arg:/_xml', 'style.xsl', 'result.htm', $arguments);
//to view in brower
echo(xslt_process($xh, 'arg:/_xml', 'style.xsl', NULL, $arguments));
?>
The above function works well, although you can't seem to view
the resulting htm document in the browser and write to a file at
the same time...instead you have to call the function twice, once
to write data to a file and once to display data in a browser.
-----------------------
here's a simple style.xsl file that works with this example...
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
</head>
<body>
<h1>Here's my data!</h1>
<xsl:value-of select="data/mytbl_title" /><br />
<xsl:value-of select="data/mytbl_filename" /><br />
</body>
</html>
</xsl:template>
</xsl:stylesheet>
enjoy!
Sanj Maghera
11-Nov-2002 11:52
Hi,
keep in mind that fifth parameter of function xsl_process() is __arguments__ and sixth is __xsl parameters__. I spent a lot of time learning difference between arguments and parameters ;-)
Tom
30-Sep-2002 09:28
The output of the XSLT process doesn't have to be necessarily HTML. If you receive a lot of data in the XML and want to distribute it along all your page, you can convert all your page to XHTML or force the output to be PHP code and then eval()uated. For instance, your XSL document (part of it) could look like:
<xsl:text disable-output-escaping="yes">$networth=</xsl:text><xsl:value-of select="networth" /><xsl:text disable-output-escaping="yes">;</xsl:text>
and your PHP code could look like:
$result = xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments);
if ($result) {
eval(addslashes($result));
that way, you can use the variable $networth in wherever you want inside your PHP file, like:
<? print $networth; ?>
02-Aug-2002 12:09
Your input into xslt-process can of course be of external-php-script-nature. This way, you can use PHP scripts that output XML code to make up the transformation:
// Transforming "Dynamic XML" through static XSL
<?php
// Gonna contain PHP-XML output
$arguments = array(
'/_xml' => $xml,
);
$xh = xslt_create();
// Read plain PHP-XML output
$xmlData = fopen ("http://somehost/xmloutputtingscript.php", "r");
// Stack up output into one String
while ($line = fgets ($xmlData))
$xml .= $line;
// Process the document
$result = xslt_process($xh, 'arg:/_xml', 'mystylesheet.xsl', NULL, $arguments);
// Print out your transformed document
echo $result;
xslt_free($xh);
06-Jul-2002 09:12
This in example on using variables from php in xsl-stylesheets (Sablotron 0.95)
with:
<xsl:param name="foo" />
and how to pass the param from php to Sablotron
(I'm using Sablotron 0.95)
The php-wrapper to Sablotron has changed somewhat in 4.0.6, so I'm using the new (experimental) syntax.
Maybe this could change again in the future
I use 4.2.1 which is compiled with:
'./configure' '--with-mysql' '--with-apxs' '--enable-xslt' '--with-xslt-sablot=/usr/local/lib' '--with-expat-dir=/usr' '--with-dom' '--with-zlib-dir=/usr'
When you want to use a param passed to the xslt_process you have to put it in the top level of the xslt-script, otherwice it won't work (means: before defining any template)
Afterwards you can use the passed param with
<xsl:value-of select="$yourparamname" />
in the template.
example:
====> xsl-stylesheet <====
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="no" omit-xml-declaration="yes" doctype-public="-//W3C/DTD XHTML 1.0 Transitional//EN" doctype-system="
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" standalone="yes" media-type="text/html" />
<xsl:param name="tpsession" />
<xsl:template match="/root/output">
this is the template stuff. and this is the param
<xsl:value-of select="$tpsession" />
</xsl:template>
</xsl:stylesheet>
====> end of xsl - stylesheet <====
o.k. -> to call the xslt_parser (Sablotron 0.95 in my case) with params do this:
<?php
/* php script */
$xh = xslt_create();
$arg = array( '/_xml' =>$t_xmlString,
'/_xsl' => $t_xslString );
$param = array('tpsession' = session_name()."=".session_id());
$result = @xslt_process($xh, 'arg:/_xml', 'arg:/_xsl',NULL,$arg,$param);
if(!$result){
print xslt_error($xh);
}
else
print $result;
xslt_free($xh);
/* end of php-script */
?>
That's it -> have fun
10-Jun-2002 04:18
For those of you wondering what the hell is up with the very strange format for refering to in-memory data, see
http://www.gingerall.com/charlie/ga/act/gadoc.act?pg=sablot#i__1029
normally you pass a file name (or URI) using the 'file:' syntax. The 'arg:' syntax introduced by sablotron does not refer to a file system path, it refers to an ARGument - and of course, arguments are in-memory. In the case of PHP, the argument reference is an index to the array in parameter 5 of the xslt_process() function. I think the forward slash is just to maintain the convention of path notation.
Someone with more knowledge on the topic could probably provide a more concise definition. If so, it would be nice to have it included as part of the standard documentation set.
Some wrapper functions would make things easier still.
Here's a wrapper I wrote.
function XtDataWithFile($xmlData, $uriXSLT) {
$args = array ( '/_xml' => $xmlData );
$xp = xslt_create();
$out = xslt_process($xp, 'arg:/_xml', $uriXSLT, NULL, $args);
xslt_free($xp);
return $out;
}
of course you could do XtFileWithData() can XtDataWithData()
03-Jun-2002 11:00
Took me a while to figure this one out, but no matter what your stylesheet encoding and xml encoding says - argument values, need to be UTF-8.
Version 4.2.1 and sablot 0.90.
02-May-2002 08:11
[Editors note: this is basic URI syntax. Any URI, is specified as: <protocol>:location. Any resource, that can point to a network, needs '//' to indicate it's "network awareness". F.E.: ftp://, http:// and yes - file://.]
For those of you wanting to know how to fix the annoying bug telling you that an econding type of '' is unacceptable ....
Win2K, PHP 4.2.0
When processing files, you need to prefix each filename with "file://" or else you will get the above mentioned error. Then you just need to set the encoding in your xslt file to get it to work.
You must use this prefix with your xml, xsl and output files if you are using all three like I am.
Happy hunting!!!
18-Apr-2002 01:04
This function's syntax has changed since PHP 4.0.x, here is a quick workaround for those who use a same script with various versions.
Note that in order to work with PHP 4.0.x, the commented part must not be directly within the code (or a parse error will occur).
This is why I commented it out here and call this bit of code via an include.
// PHP 4.0.6/4.1.x difference
$minor = explode(".",phpversion());
if($minor[1] >= 1) // PHP 4.1.x -- preferred
{
include("php412_XSLT.php");
/* here is the included code
$arguments = array(
'/_xml' => $final_xml,
'/_xsl' => $xsl_content
);
$html_out = xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments);
end of included code */
} else // PHP 4.0.6 -- works okay
xslt_process($xsl_content, $final_xml,$html_out);
echo $html_out;
14-Mar-2002 03:22
Note that this extension changed quite heavily in the latest releases. The documentation and howtos on the web may not match your version of php !
To verify your extension, check the configure information
( <?php phpinfo(); ?> )
for either
--with-sablot ( old )
or
--enable-xslt --with-xslt-sablot (new).
Most ( all?) web documents i found describe the use of the old extension, which also changed in the process of development.
This extension is marked experimental for a reason ;)
19-Feb-2002 04:14
Relative paths using xsl:include
i addition to francis's note above you can set the base path with the xslt_set_base function like this on windows like this.
xslt_set_base('file://c:/path to xslt files/')
from you xsl file use the
<xsl:include href="file.xls">
If you wish to have full access to all files in you site only specify the root path and then use
<xsl:include href="somepath/file.xls">
God speed.
13-Feb-2002 12:00
Just because that I have look around and see other look around without any solution, so for prosperity, I give somethings that surely a lot of people know but a lot don't too.
OK, if you want to do xsl:include in your xsl file that will be parsed by your php page with xslt and sablot installed,
you have to put that in your xsl page (on a linux machine):
<xsl:include href="file:///pathtomyxslfile/xy.xsl">
yes you do have 3 "///", the 2 first are used by sablotron and the third one is used for your path as: /pathtomyxslfile/xy.xsl
It was in the sablotron doc, well part of it.
Tested on:
php 4.1.0
Apache/1.3.22
sablot 0.80
Thanks you and take care.
29-Jan-2002 02:06
If you are getting the data from a database and creating the XML data stream for transformation, you can add the parameters for the stylesheet into the XML data. Once in the data, you can reference them from the XSL stylesheet directly.
17-Jan-2002 05:42
I noticed a slight difference in html output when upgrading to php4.1.1 on Windows.
I found the garbled output to be caused by [indent="yes"] in <xsl:output /> and simply changed it to [indent="no"].
07-Jan-2002 12:48
It appears that the xslt_process function does not like to have NULLs passed into it for the Argument and Parameter arrays. However, you can pass it an empty Argument array (modulo any typos):
$xh = xslt_create();
$args = array();
$params = array( 'foo' => 'bar' );
$result = xslt_process($xh,
'source.xml','source.xsl',NULL,
$args,$params);
if ($result)
{
print $result;
} else {
print "Error: ".xslt_error($xh);
}
That way you don't have to worry about providing methods for reading files into the argument array.
