I have this array :
Array (
[0] => SecRuleEngine On
[1] => SecRequestBodyAccess On
)
How to turn the array above into this:
Array (
[0] =>
Array (
[0] => SecRuleEngine
[1] => On
)
[1] => Array (
[0] => SecRequestBodyAccess
[1] => On
)
)