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/05/09 10:05]
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> 
- 
-<html>Turn an <b><span style="color:green">array<span style="color:black"></b> into a <b><span style="color:green">string<span style="color:black"></b></html> 
- 
-====Description==== 
- 
-<well size="sm"><html> 
-<span style="font-size:125%;color:green">string 
-<span style="color:black">implode ( 
-<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> 
- 
-<html>Turn an <b><span style="color:green">array<span style="color:black"></b> into a <b><span style="color:green">string<span style="color:black"></b> with the delimiter separating each element</html> 
- 
-====Parameters==== 
- 
-<html><b><span style="color:blue">$array<span style="color:black"></b>:  <b><span style="color:green">Array<span style="color:black"></b> to be turned into a <b><span style="color:green">string<span style="color:black"></b></html> 
- 
-<html><b><span style="color:blue">$delimiter<span style="color:black"></b>:  Character to use for separating each array element put into the <b><span style="color:green">string<span style="color:black"></b></html> 
- 
-====Return Value==== 
- 
-<html><b><span style="color:green">String<span style="color:black"></b> containing concatenated elements</html> 
- 
-====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()]] - <html>Turn a <b><span style="color:green">string<span style="color:black"></b> into an <b><span style="color:green">array<span style="color:black"></b></html> 
- 
-[[array()]] - <html>Create an <b><span style="color:green">array<span style="color:black"></b>, with optional values</html> 
- 
-[[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 <html><b><span style="color:green">array<span style="color:black"></b></html> 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)