downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<xslt_errnoxslt_free>
Last updated: Thu, 26 Jun 2008

xslt_error

(PHP 4 >= 4.0.3)

xslt_error — Returns an error string

Description

string xslt_error ( resource $xh )

Returns a string describing the last error that occurred on the passed XSLT processor.

Parameters

xh

The XSLT processor link identifier, created with xslt_create().

Return Values

Returns the error message, as a string.

Examples

Example #1 Handling errors using the xslt_error() and xslt_errno() functions.

<?php

$xh
= xslt_create();
$result = xslt_process($xh, 'dog.xml', 'pets.xsl');
if (!
$result) {
   die(
sprintf("Cannot process XSLT document [%d]: %s",
              
xslt_errno($xh), xslt_error($xh)));
}

echo
$result;

xslt_free($xh);
?>

See Also



add a noteadd a note User Contributed Notes
Returns an error string
There are no user contributed notes for this page.




<xslt_errnoxslt_free>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs