Nieuw lid |
|
Hoe kan je een array explode?
Ik heb het op verschillende manieren geprobeerd.
Dus zoiets wil ik:
<?php
$array = array('a b', 'c d', 'e f');
$explode = explode(' ', $array);
?>
<?php $array = array('a b', 'c d', 'e f'); ?>
Met als resultaat:
Array: [0] [0] => a
[1] => b
[1] [0] => c
[1] => d
[2] [0] => e
[1] => f
|