Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<?php
$date = "1970-01-01";
$pattern = "/-/";
$components = preg_split($pattern, $date, -1,
PREG_SPLIT_OFFSET_CAPTURE);
print_r($components);
?>
</body>
</html>
Array
(
    [0] => Array
        (
            [0] => 1970
            [1] => 0
        )

    [1] => Array
        (
            [0] => 01
            [1] => 5
        )

    [2] => Array
        (
            [0] => 01
            [1] => 8
        )

)