How can I split a delimited string into an array in PHP?

前端 未结 10 1665
失恋的感觉
失恋的感觉 2020-11-21 11:11

I need to split my string input into an array at the commas.

How can I go about accomplishing this?

Input:

9,admin@example.com,8
10条回答
  •  逝去的感伤
    2020-11-21 12:05

    The Best choice is to use the function "explode()".

    $content = "dad,fger,fgferf,fewf";
    $delimiters =",";
    $explodes = explode($delimiters, $content);
    
    foreach($exploade as $explode) {
        echo "This is a exploded String: ". $explode;
    }
    

    If you want a faster approach you can use a delimiter tool like Delimiters.co There are many websites like this. But I prefer a simple PHP code.

提交回复
热议问题