Ben sınırlayıcı bir dizi ile bir dize bölmek ve aynı zamanda sınırlayıcı ne geribildirim almak istiyorum.
Example:
$mystring = 'test+string|and|hello+word';
$result = preg_split('/\+,|/+', $mystring);
I would like an array as return with something like this:
$return[0] = array('test','+');
$return[1] = array('string','|');
Önceden thnx