PHP 8.5.0 Alpha 1 available for testing

Voting

: min(six, four)?
(Example: nine)

The Note You're Voting On

diesel at spbnet dot ru
18 years ago
This is not a problem. You may set DOMDocument's documentURI property.
Something like this

<?php
$xsl
= new DOMDocument('1.0','UTF-8');

$xsl->loadXML(file_get_contents('/foo/bar/somefile.xsl');
$xsl->documentURI = '/foo/bar/somefile.xsl';

$xslProc = new XSLTProcessor();
$xslProc->importStylesheet($xsl);
?>

and document('other.xsl') will work fine!

<< Back to user notes page

To Top