1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00

Cosmetics and NEWS entry

This commit is contained in:
Christian Stocker
2004-01-19 17:27:22 +00:00
parent e4d90e60fc
commit d4488ccf2d
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,6 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2004, PHP 5 RC1
- Added xsltprocessor->registerPHPFunctions() (Christian)
- Bundled new SPL extension (Marcus, Derick)
- Upgraded SQLite library to version 2.8.11. (Ilia, Wez)
- Fixed var_export() to show public, protected and private modifiers properly.
+1 -1
View File
@@ -17,7 +17,7 @@ $dom = new domDocument();
$xml = new DomDocument();
$xml->load(dirname(__FILE__)."/xslt011.xml");
$proc->registerPhpFunctions();
$proc->registerPHPFunctions();
print $proc->transformToXml($xml);
function foobar($id, $secondArg = "" ) {
+1 -1
View File
@@ -46,7 +46,7 @@ zend_function_entry php_xsl_xsltprocessor_class_functions[] = {
PHP_FALIAS(getParameter, xsl_xsltprocessor_get_parameter, NULL)
PHP_FALIAS(removeParameter, xsl_xsltprocessor_remove_parameter, NULL)
PHP_FALIAS(hasExsltSupport, xsl_xsltprocessor_has_exslt_support, NULL)
PHP_FALIAS(registerPhpFunctions, xsl_xsltprocessor_register_php_functions, NULL)
PHP_FALIAS(registerPHPFunctions, xsl_xsltprocessor_register_php_functions, NULL)
{NULL, NULL, NULL}
};