PhpDig.net

What is PhpDig?
PhpDig is a PHP MySQL based
Web Spider & Search Engine.




xslt_process

Name

xslt_process — Applies a stylesheet contained in one string to XML contained in another, placing the result in a third string.

Synopsis

boolean xslt_process(xslt_stylesheet, xml_data, result[, base_URI]);
string xslt_stylesheet: Stylesheet to apply
string xml_data: XML to be transformed
string result: Result of transformation
string base_URI (optional): Base URI

Returns

TRUE on success; FALSE otherwise.

Description

This is a very simple way to apply a stylesheet contained in one string ( xslt_stylesheet ) to XML data in another string ( xml_data ), optionally supplying a base URI at the same time. Among other things, this would be useful when your stylesheet and XML document are not stored in files; for instance, when you've fetched them from a database. After a successful transformation, the results will be placed into the string result .

Example

Example 1144. Applying a stylesheet in a string to an XML document in a string.

<?php
error_reporting(E_ALL);

$result = '';
$xml_doc = join('', file('http://www.slashdot.org/slashdot.xml'));
$stylesheet = join('', file('slashdot.xsl'));
/* Apply the stylesheet. */
if (xslt_process($stylesheet, $xml_doc, $result)) {
    echo "<b>Successful; got:</b><hr>$result<hr>\n";
} else {
    echo "<b>Got error:</b><hr>" . xslt_error() . "<hr>\n";
}
?>



PHP Functions Essential Reference. Copyright © 2002 by New Riders Publishing (Authors: Zak Greant, Graeme Merrall, Torben Wilson, Brett Michlitsch). This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). The authors of this book have elected not to choose any options under the OPL. This online book was obtained from http://www.fooassociates.com/phpfer/ and is designed to provide information about the PHP programming language, focusing on PHP version 4.0.4 for the most part. The information is provided on an as-is basis, and no warranty or fitness is implied. All persons and entities shall have neither liability nor responsibility to any person or entity with respect to any loss or damage arising from the information contained in this book.

Powered by: vBulletin Version 3.0.7
Copyright ©2000 - 2005, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.