mirror of
https://github.com/php/php-src.git
synced 2026-03-27 09:42:22 +01:00
PHP requires boolean typehints to be written "bool" and disallows
"boolean" as an alias. This changes the error messages to match
the actual type name and avoids confusing messages like "must be
of type boolean, boolean given".
This a followup to ce1d69a1f6, which
implements the same change for integer->int.
56 lines
1.3 KiB
PHP
56 lines
1.3 KiB
PHP
--TEST--
|
|
Check XSLTProcessor::transformToDoc() with boolean parameter
|
|
--CREDITS--
|
|
Rodrigo Prado de Jesus <royopa [at] gmail [dot] com>
|
|
--SKIPIF--
|
|
<?php extension_loaded('xsl') or die('skip xsl extension is not available'); ?>
|
|
--FILE--
|
|
<?php
|
|
$xml = <<<EOB
|
|
<allusers>
|
|
<user>
|
|
<uid>bob</uid>
|
|
</user>
|
|
<user>
|
|
<uid>joe</uid>
|
|
</user>
|
|
</allusers>
|
|
EOB;
|
|
$xsl = <<<EOB
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:php="http://php.net/xsl">
|
|
<xsl:output method="html" encoding="utf-8" indent="yes"/>
|
|
<xsl:template match="allusers">
|
|
<html><body>
|
|
<h2>Users</h2>
|
|
<table>
|
|
<xsl:for-each select="user">
|
|
<tr><td>
|
|
<xsl:value-of
|
|
select="php:function('ucfirst',string(uid))"/>
|
|
</td></tr>
|
|
</xsl:for-each>
|
|
</table>
|
|
</body></html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|
|
EOB;
|
|
|
|
$xmldoc = new DOMDocument('1.0', 'utf-8');
|
|
$xmldoc->loadXML($xml);
|
|
|
|
$xsldoc = new DOMDocument('1.0', 'utf-8');
|
|
$xsldoc->loadXML($xsl);
|
|
|
|
$proc = new XSLTProcessor();
|
|
$proc->registerPHPFunctions();
|
|
$proc->importStyleSheet($xsldoc);
|
|
|
|
$wrong_parameter = true;
|
|
|
|
echo $proc->transformToDoc($wrong_parameter);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: XSLTProcessor::transformToDoc() expects parameter 1 to be object, bool given in %s on line %d
|