I need to extend XSLT processor in PHP with my own tags and functions. I found some APIs, but these APIs is still not what I need.
1) http://php.net/manual/ru/book.xsl.php - quite simple API, but I can extend functions only (registerPHPFunctions), not tags.
2) http://www.php.net/manual/en/ref.xslt.php - nice and simple, I can extend whatever I need (xslt_set_sax_handlers), but, here we go - another problem. Introduction (http://www.php.net/manual/en/intro.xslt.php) says: "This extension has been moved to the » PECL repository and is no longer bundled with PHP as of PHP 5.0.0.". Okay, I'm navigating to pecl.php.net -> Search Packages -> XSLT -> No results found -> o_O
So, looks like the good API was deprecated, and the bad API doesn't satisfy my needs. What can you recomend guys? I need a PHP XSLT processor where I can extend or override everything that can be extended or overridden like the "2)" above does. Thanks!