以下を達成するための最良の方法は何ですか。
私はこの形式の文字列を持っています:
$s1 = "name1|type1"; //(pipe is the separator)
$s2 = "name2|type2";
$s3 = "name3"; //(in some of them type can be missing)
nameN
/は文字typeN
列であり、パイプを含めることはできません。
名前/タイプを個別に抽出する必要があるため、次のようにします。
$temp = explode('|', $s1);
$name = $temp[0];
$type = ( isset($temp[1]) ? $temp[1] : '' );
isset($temp[1])
またはcount($temp)
. _
ありがとう!