[PHP-DOC] cvs: phpdoc /en/reference/strings/functions str-repeat.xml

2006-10-18 Thread Friedhelm Betz
betzWed Oct 18 15:00:01 2006 UTC

  Modified files:  
/phpdoc/en/reference/strings/functions  str-repeat.xml 
  Log:
  fix 39186
  
http://cvs.php.net/viewvc.cgi/phpdoc/en/reference/strings/functions/str-repeat.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/strings/functions/str-repeat.xml
diff -u phpdoc/en/reference/strings/functions/str-repeat.xml:1.7 
phpdoc/en/reference/strings/functions/str-repeat.xml:1.8
--- phpdoc/en/reference/strings/functions/str-repeat.xml:1.7Tue Aug 17 
21:44:35 2004
+++ phpdoc/en/reference/strings/functions/str-repeat.xmlWed Oct 18 
15:00:01 2006
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -14,7 +14,7 @@
   
intmultiplier
  
 
- Returns input_str repeated
+ Returns input repeated
  multiplier times.
  multiplier has to be greater than or equal to 0.
  If the multiplier is set to 0, the function will


[PHP-DOC] cvs: phpdoc /en/reference/strings/functions str-repeat.xml

2004-08-17 Thread Yannick TORRES
yannick Tue Aug 17 17:44:35 2004 EDT

  Modified files:  
/phpdoc/en/reference/strings/functions  str-repeat.xml 
  Log:
  typo
  
http://cvs.php.net/diff.php/phpdoc/en/reference/strings/functions/str-repeat.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/strings/functions/str-repeat.xml
diff -u phpdoc/en/reference/strings/functions/str-repeat.xml:1.6 
phpdoc/en/reference/strings/functions/str-repeat.xml:1.7
--- phpdoc/en/reference/strings/functions/str-repeat.xml:1.6Fri May 30 12:47:59 
2003
+++ phpdoc/en/reference/strings/functions/str-repeat.xmlTue Aug 17 17:44:35 
2004
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -29,10 +29,13 @@
 ?>
 ]]>
  
+ &example.outputs;
+ 
+
+ 
 
-
- This will output "-=-=-=-=-=-=-=-=-=-=".
-
 
  See also for,
  str_pad, and 


[PHP-DOC] cvs: phpdoc /en/reference/strings/functions str-repeat.xml

2002-06-02 Thread Derick Rethans

derick  Sun Jun  2 12:58:29 2002 EDT

  Modified files:  
/phpdoc/en/reference/strings/functions  str-repeat.xml 
  Log:
  - Fix for bug #17561
  
  
Index: phpdoc/en/reference/strings/functions/str-repeat.xml
diff -u phpdoc/en/reference/strings/functions/str-repeat.xml:1.3 
phpdoc/en/reference/strings/functions/str-repeat.xml:1.4
--- phpdoc/en/reference/strings/functions/str-repeat.xml:1.3Mon May 13 22:51:46 
2002
+++ phpdoc/en/reference/strings/functions/str-repeat.xmlSun Jun  2 12:58:29 
+2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -16,7 +16,9 @@
 
  Returns input_str repeated
  multiplier times.
- multiplier has to be greater than 0.
+ multiplier has to be greater than or equal to 0.
+ If the multiplier is set to 0, the function will
+ return an empty string.
 
 
  str_repeat example





[PHP-DOC] cvs: phpdoc /en/reference/strings/functions str-repeat.xml

2002-05-13 Thread Philip Olson

philip  Mon May 13 22:51:47 2002 EDT

  Modified files:  
/phpdoc/en/reference/strings/functions  str-repeat.xml 
  Log:
  See also str_pad() and for loop.
  
  
Index: phpdoc/en/reference/strings/functions/str-repeat.xml
diff -u phpdoc/en/reference/strings/functions/str-repeat.xml:1.2 
phpdoc/en/reference/strings/functions/str-repeat.xml:1.3
--- phpdoc/en/reference/strings/functions/str-repeat.xml:1.2Wed Apr 17 02:44:22 
2002
+++ phpdoc/en/reference/strings/functions/str-repeat.xmlMon May 13 22:51:46 
+2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -30,7 +30,9 @@
  This will output "-=-=-=-=-=-=-=-=-=-=".
 
 
- See also substr_count.
+ See also: for,
+ str_pad, and 
+ substr_count.