PHP-Code:
//Rows matched: 40 Changed: 40 Warnings: 0
//Records: 2 Duplicates: 2 Warnings: 0
$teile = array();
preg_match('#:.*(/d+).*:.*(/d+).*:.*(/d+).*#i',$info, &$teile);
list(,$matched,$changed,$warnings) = $teile;
list(,$matched,$changed,$warnings) = preg_split('#/D+#',$info);
PS anstatt backslash steht hier /, im Original sind es backslash.
Kommentar