It’s happened to all of us.
(Vagueness intensifies)
You’ve walked out of the cinema, and you can’t help but think “that needed more explosions”.
Similarly, we’ve all written a PHP script and thought much the same thing. Right? …right?
Now there’s a solution.
This all-new PHP function, needsMoreExplosions(), will solve all your problems by exploding an array or string wherever it may occur.
Where is this lovely function?
GLaD you asked, here it is now:
function needsMoreExplosions($notexploded,$order,$delimeter) { if($order) if($delimeter) $exploded = explode($delimeter,implode($delimeter,$notexploded)) else $exploded = explode('/unique 1b35f4592ed35a24 string/',implode('/unique 1b35f4592ed35a24 string/',$notexploded)); else if($delimeter) $exploded = implode($delimeter,explode($delimeter,$notexploded)); else $exploded = implode('e',explode('e',$notexploded)); return $exploded; }
Documentation
(PHP 4, PHP 5)
Description
array/string needsMoreExplosions (array/string $notexploded , int $order , string $delimeter)
Returns exactly what you gave it, except explodes and implodes it first.
Parameters
notexploded
The array or string that needs exploding.
order
Whether to explode then implode or implode then explode (depends on whether a string or array was passed). Set true
for an array or false
for a string.
delimeter
What to base explosion or implosion around. Can be bypassed with false
for weaker results.
Return values
Returns $notexploded
by exploding and imploding it.
No comments found.