From 58aed806b29dbbb340b4b70598ba9d3c5722aaeb Mon Sep 17 00:00:00 2001 From: Ron Chmara Date: Tue, 12 Sep 2000 07:12:22 +0000 Subject: [PATCH] Updating see-also's for trim/chop functions. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@32545 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/strings.xml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/functions/strings.xml b/functions/strings.xml index 1bd8afb17b..f5f84cc2e0 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -144,7 +144,8 @@ $trimmed = chop ($line); - See also trim. + See also trim, ltrim, + rtrim, and chop. @@ -947,7 +948,8 @@ $colon_separated = implode (":", $array); and a plain space. - See also chop and trim. + See also chop, rtrim, and + trim. @@ -1238,7 +1240,8 @@ $trimmed = rtrim ($line); - See also trim, ltrim. + See also trim, ltrim, and + rtrim. @@ -2846,7 +2849,7 @@ echo substr_replace ($var, '', 10, -1) . "<br>\n"; and a plain space. - See also chop and + See also chop, rtrim and ltrim.