From de033b2a4819246f08651be71fa42a410d5ee406 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Sun, 6 Jul 2003 16:09:20 +0000 Subject: [PATCH] See also substr_replace and trim. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@134269 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/substr.xml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/reference/strings/functions/substr.xml b/reference/strings/functions/substr.xml index 8ae115ea4c..1534b970e9 100644 --- a/reference/strings/functions/substr.xml +++ b/reference/strings/functions/substr.xml @@ -1,5 +1,5 @@ - + @@ -93,8 +93,10 @@ $rest = substr("abcdef", -3, -1); // returns "de" - See also strrchr and - ereg. + See also strrchr, + substr_replace, + ereg, and + trim.