私は次のように置き換えたいと動的配列を一緒に比較は私のコードであれば、else文
$domains_to_exclude="VALUE,VALUE,VALUE,VALUE";
両方の配列の値は変化し、変化します。私がしたいのは、$file['domain']
の値がdomains_to_exclude
と一致すればそれをスキップすることです。
私はこのようなことを試して正しい方向に進んでいます。これまで私は何の成功もしていない。
$myArray = explode(',', $domains_to_exclude);
$count = count($file);
for ($i=1; $i<$count; $i++)
{
if ($myArray[$i] !== $file['domain'])
{
$domain=$file['domain'];
$domainn = str_replace("", "", $domain);
echo'<option value="'.$domain.'">'.$domainn.'</option>';
}
else {}
}
'in_array'関数です。 –