Jump to content

put words from a string as indivual items in array


dadamssg

Recommended Posts

I have a a sentence

 

$sentence = "The quick brown fox jumped over the gate";

 

how would put each of those words as an individual item in an array?

 

so if you print the array it would look like this

 

Array
(
    [0] => The
    [1] => quick
    [2] => brown
    [3] => fox
    [4] => jumped
    [8] => over
    [9] => the
    [10]=> gate
)

Nice, never knew that function existed.

 

It's name does tend to fool anyone (it even almost fooled me) not reading the manual properly. As it contains a format (hence the 1 in my function call) to set the type of return.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.