hy...
wie escaped man ein BackSlash ??? "\"
cya Jointy
wie escaped man ein BackSlash ??? "\"
PHP-Code:
$array=explode("\", $buffer);
<?
$string="test\rest\nest\test";
$array=explode("\\\",$string);
echo $array[0];
echo $array[1];
echo $array[2];
echo $array[3];
?>
Kommentar