From adf67bb563139a58a26d2aad6d37460f76c316a3 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Thu, 21 Apr 2005 09:58:46 +0000 Subject: [PATCH] Warning for PHP 5.1 feature (bug #32785) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@184810 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/explode.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/explode.xml b/reference/strings/functions/explode.xml index 81aa3a3306..e1e09a88cc 100644 --- a/reference/strings/functions/explode.xml +++ b/reference/strings/functions/explode.xml @@ -1,5 +1,5 @@ - + @@ -82,7 +82,7 @@ $str = 'one|two|three|four'; // positive limit print_r(explode('|', $str, 2)); -// negative limit +// negative limit (since PHP 5.1) print_r(explode('|', $str, -1)); ?> ]]>