I have an array having various numbers:
$array = [1,2,3,4];
I would like to have some code that will extract those values and prepend 'ad' to them while imploding into an html attribute:
<div class="ad1 ad2 ad3">
How can I do that?
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Loop over your array, and do whatever you have to:
In your exemple:
|
|||||
|
|
Combine Something like this:
|
|||||||||||||
|
|
You can either loop over it as Mathieu suggests, or do an implode statement:
|
|||
|
|
|
Try this:
|
|||||||
|