Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
柔道部の入会制度の仕事をしています。現れた人のIDを格納するために文字列を使用しています。次のようになります。
0,3,4,7,8,10,
ここで、PHP で各数値を整数配列に分離したいと考えています。これに対する最も簡単な解決策は何ですか?:)
使用するexplode()
explode()
$ids = explode(',', '0,3,4,7,8,10');
$str = '0,3,4,7,8,10'; $arr = explode(',',$str);
使用するEXPLODE
EXPLODE
$num = "0,3,4,7,8,10"; $pieces = explode(",", $num );