xref: /PHP-7.4/ext/xsl/tests/xslt003.phpt (revision 26dfce7f)
1--TEST--
2Test 3: Using Parameters
3--SKIPIF--
4<?php require_once __DIR__ .'/skipif.inc'; ?>
5--FILE--
6<?php
7echo "Test 3: Using Parameters";
8include("prepare.inc");
9$proc->importStylesheet($xsl);
10$proc->setParameter( "", "foo","hello world");
11print "\n";
12print $proc->transformToXml($dom);
13print "\n";
14--EXPECT--
15Test 3: Using Parameters
16<?xml version="1.0" encoding="iso-8859-1"?>
17<html><body>hello world
18a1 b1 c1 <br/>
19a2 c2 <br/>
20�3 b3 c3 <br/>
21</body></html>
22