From 54df4a2c021e9cc06d71a359d385cb127ab31e2d Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Sat, 27 Apr 2002 22:00:40 +0000 Subject: [PATCH] array_flib -> array_flip git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@80179 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/htmlentities.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/htmlentities.xml b/reference/strings/functions/htmlentities.xml index 0bfeb168a3..e721d17705 100644 --- a/reference/strings/functions/htmlentities.xml +++ b/reference/strings/functions/htmlentities.xml @@ -1,5 +1,5 @@ - + @@ -51,7 +51,7 @@ function unhtmlentities ($string) { $trans_tbl = get_html_translation_table (HTML_ENTITIES); - $trans_tbl = array_flib ($trans_tbl); + $trans_tbl = array_flip ($trans_tbl); return strtr ($string, $trans_tbl); } ?>