User Tools

Site Tools


uphp:functions:implode

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

uphp:functions:implode [2017/03/28 20:13]
jeff
uphp:functions:implode [2021/09/13 05:57]
Line 1: Line 1:
-======implode====== 
-<badge>WMPRO, WMMINI FW >= 1.0</badge> <badge>WMMEGA FW >= 2.0</badge> 
- 
-Turn an array into a string 
- 
-====Description==== 
-<well size="sm"><html><span style="font-size:125%;color:green;">string 
-<span style="color:black;"></html>[[implode]] 
-<html>( 
-<span style="color:green;">array 
-<span style="color:blue;">$array<span style="color:black;">, 
-<span style="color:green;">string 
-<span style="color:blue;">$delimiter 
-<span style="color:black;">) 
-</html></well> 
-Turn an array into a string with the delimiter separating each element 
- 
-====Parameters==== 
-<html><span style="color:blue;"><b>$array</b><span style="color:black;"></html>:  Array to be turned into a string 
- 
-<html><span style="color:blue;"><b>$delimiter</b><span style="color:black;"></html>:  Character to use for separating each array element put into the string 
- 
-====Return Value==== 
-String containing concatenated elements 
- 
-====Example==== 
-<code php> 
-<? 
-  $mylist=array("one","two","three","four"); 
-  $st=implode($mylist,"|"); 
-  print($st); 
-?> 
-</code> 
- 
-The above example will output: 
-<code> 
-one|two|three|four  
-</code> 
- 
-====See Also==== 
-[[explode()]] - Turn a string into an array 
- 
-[[array()]] - Create an array, with optional values 
- 
-[[uphp:variables|uPHP Variable Types and Limits]] 
- 
-====Additional Information==== 
-The mainline PHP function ''implode()'' can accept its parameters in either order, but uPHP requires that the array comes first followed by the delimiter. 
- 
-Wattmon uPHP's parameter order is easier to remember and more consistent:  The delimiter parameter comes last in both [[explode()]] and [[implode()]]. 
- 
  
uphp/functions/implode.txt · Last modified: 2021/09/13 05:57 (external edit)