InterviewSolution
| 1. |
How To Join Multiple Strings Into A Single String? |
|
Answer» If you multiple strings stored in an array, you can join them TOGETHER into a SINGLE string with a given delimiter by using the implode() function. Here is a PHP script on how to USE implode(): If you multiple strings stored in an array, you can join them together into a single string with a given delimiter by using the implode() function. Here is a PHP script on how to use implode(): |
|