implode () is often used in conjuction with explode() to do something really useful. # Replace separator ';' with ',' $result = implode(',', explode(';', $input));
確定! 回上一頁