Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xslt_set_error_handler(3) [php man page]

XSLT_SET_ERROR_HANDLER(3)						 1						 XSLT_SET_ERROR_HANDLER(3)

xslt_set_error_handler - Set an error handler for aXSLTprocessor

SYNOPSIS
void xslt_set_error_handler (resource $xh, mixed $handler) DESCRIPTION
Set an error handler function for the XSLT processor given by $xh, this function will be called whenever an error occurs in the XSLT transformation (this function is also called for notices). PARAMETERS
o $ xh -The XSLT processor link identifier, created with xslt_create(3). o $handler - The user function needs to accept four parameters: the XSLT processor, the error level, the error code and an array of messages. The function can be shown as: error_handler (resource $xh, int $error_level, int $error_code, array $messages) RETURN VALUES
No value is returned. EXAMPLES
Example #1 xslt_set_error_handler(3) Example <?php // Our XSLT error handler function xslt_error_handler($handler, $errno, $level, $info) { // for now, let's just see the arguments var_dump(func_get_args()); } // XML content : $xml='<?xml version="1.0"?> <para> oops, I misspelled the closing tag </pata>'; // XSL content : $xsl='<?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <strong><xsl:value-of select="para"/></strong> </xsl:template> </xsl:stylesheet>'; $xh = xslt_create(); xslt_set_error_handler($xh, "xslt_error_handler"); echo xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, array("/_xml" => $xml, "/_xsl" => $xsl)); ?> The above example will output something similar to: array(4) { [0]=> resource(1) of type (XSLT Processor) [1]=> int(3) [2]=> int(0) [3]=> array(6) { ["msgtype"]=> string(5) "error" ["code"]=> string(1) "2" ["module"]=> string(9) "Sablotron" ["URI"]=> string(9) "arg:/_xml" ["line"]=> string(1) "4" ["msg"]=> string(34) "XML parser error 7: mismatched tag" } } SEE ALSO
xslt_set_object(3) if you want to use an object method as handler. PHP Documentation Group XSLT_SET_ERROR_HANDLER(3)

Check Out this Related Man Page

sabcmd(1)						      General Commands Manual							 sabcmd(1)

NAME
sabcmd - a command line interface to Sablotron XSLT processor SYNOPSIS
sabcmd [options] <stylesheet> [<input> [<output>]] [assignments] sabcmd [options] -batch-xml <input> [<stylesheet> [<output>]]+ [assignments] sabcmd [options] -batch-xsl <stylesheet> [<input> [<output>]]+ [assignments] DESCRIPTION
sabcmd is a command line interface to Sablotron XSLT processor. You can use is to transform XML files with XSLT stylesheets. The only required parameter is a stylesheet; this is a URI of an XSLT stylesheet to be used for the transformation process. If you omit an input file, the standard input is used. In addition, you can specify an output file. If no output file is given, the output is sent to the standard output. sabcmd can also run in a batch mode to process single input file with multiple stylesheets (--batch-xml) or to apply a stylesheet to multi- ple input files (--batch-xsl). Assignments allow to pass parameters and named buffers to the processor. The assignments have always the form of name1=value1 name2=value2 ... where name is either an ASCII string for named buffers or an ASCII string with the leading '$' sign for parameters. (Note that you need to use the right quotes to prevent the shell interpreter from performing an expansion of variables). OPTIONS
Option can be of two forms - short or long. If some options have values, the values are separated with a whitespace for short options and with a equal sign ('=') for long options. -L mylog.log is the same as --log-file=mylog.log COMMON OPTIONS -x, --batch-xml multiple stylesheets, single input file -s, --batch-xsl multiple input files, single stylesheet -b, --base=NAME set the hard base URI to NAME --debug-options display the information on debugging options -?, --help display this help message -L, --log-file=NAME set the log file, turns logging on -m, --measure measure the time of processing -v, --version display the version information DEBUG OPTIONS --debug display results of the command line parse -t, --times=COUNT run sabcmd the specified number of times -f, --flags pass flags given to SablotSetOptions() -F, --use-SPF use SablotProcessFiles() -S, --use-SPS use SablotProcessStrings(). Give 2 args (stylesheet, input). Precede each by @. --use-SPS-on-files use SablotProcessStrings() on the contents of the given files. ENVIRONMENT
When the <xsl:sort> instruction is used without the 'lang' attribute, common locale related environment variables apply.. BUGS
There are no known bugs related to sabcmd currently. Most of bugs you can meet are related to Sablotron processor itself. In such a case, please take a look at Sablotron's home website (www.gingerall.org) or contact us at <sab-bugs@gingerall.cz>. AUTHOR
Pavel Hlavnicka <pavel@gingerall.cz> June 17, 2002 sabcmd(1)
Man Page