<?php $text = "'abc', 'def', 'ghf\'\\\', 'jkl\'f'"; print("Input: ".$text."\n");
Standard input is empty
Input: 'abc', 'def', 'ghf\'\\', 'jkl\'f'
Array
(
[0] => Array
(
[0] => 'abc'
[1] => 'def'
[2] => 'ghf\'\\'
[3] => 'jkl\'f'
)
[1] => Array
(
[0] => abc
[1] => def
[2] => ghf\'\\
[3] => jkl\'f
)
)