xref: /PHP-5.5/ext/xsl/tests/xslt007.phpt (revision 1504c700)
1--TEST--
2Test 7: Transform To Uri
3--SKIPIF--
4<?php require_once dirname(__FILE__) .'/skipif.inc'; ?>
5--FILE--
6<?php
7echo "Test 7: Transform To Uri";
8include("prepare.inc");
9$proc->importStylesheet($xsl);
10print "\n";
11$doc = $proc->transformToUri($dom, "file://".dirname(__FILE__)."/out.xml");
12print file_get_contents(dirname(__FILE__)."/out.xml");
13unlink(dirname(__FILE__)."/out.xml");
14print "\n";
15
16
17--EXPECT--
18Test 7: Transform To Uri
19<?xml version="1.0" encoding="iso-8859-1"?>
20<html><body>bar
21a1 b1 c1 <br/>
22a2 c2 <br/>
23�3 b3 c3 <br/>
24</body></html>
25