WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Forex Trading Online forex trading platform
Sets the object in which to resolve callback functions

xslt_set_object

(PHP 4 >= 4.3.0)

xslt_set_objectSets the object in which to resolve callback functions

Description

bool xslt_set_object ( resource $processor , object &$obj )

This function allows to use the processor inside an object and to resolve all callback functions in it.

The callback functions can be declared with xml_set_sax_handlers(), xslt_set_scheme_handlers() or xslt_set_error_handler() and are assumed to be methods of object .

Parameters

processor

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

obj

An object.

Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example #1 Using your own error handler as a method

<?php

class my_xslt_processor {

    var 
$_xh// our XSLT processor

    
function my_xslt_processor()
    {
        
$this->_xh xslt_create();

        
// Make $this object the callback resolver
        
xslt_set_object($this->_xh$this);

        
// Let's handle the errors
        
xslt_set_error_handler($this->_xh"my_xslt_error_handler");
    }

    function 
my_xslt_error_handler($handler$errno$level$info)
    {
        
// for now, let's just see the arguments
        
var_dump(func_get_args());
    }
}

?>