Is it possible to use in explode/implode functions delimiters with ASCII code less than 32?
I mean something like
$v = explode(chr(29), $string)
or
$v = explode(chr(8), $string)
I've trying severe ways but I have always an error
implode(): Invalid arguments passed
How can I do it, if it's possible?
I'm working in a PHP rotine with a request to an URL: http://192.168.xxx.xxx/?city=22&street=11 that returns a string in HTML with delimiters.
Something like name=John&age=32&gender=male but with chr(9) and chr(31) in '=' and '&' places. How can I explode with chr(9) ou chr(31), for example?
I want that those delimiters will be in char code less that 32, to avoid errors with characters that can be obtained in keyboard, so the idea is to use char codes less chr(32).