-3 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
2 Posted Topics
Re: Array to String
[code] function arrayToString($array){ $i = 0; $string = ''; foreach ($array as $index => $value ){ if($i != count($array)-1){ $string .= "$index :$value, "; }else $string .= "$index :$value"; $i++; } $string = '['.$string.']'; return $string; } [/code] this is a basic json vector you'll receive something like this [index: …
Man, what's the error message, show me what's hapanning :D
The End.
xShirowx