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.
特殊文字(。、*など)のみを含む配列からすべての要素を削除するにはどうすればよいですか。
function only_specialchars($string) { if (preg_match("/[a-z0-9]/i", $string)) { return false; } else { return true; } } $filtered = array_filter($array, "only_specialchars"));
このようなもの?これにより、文字や数字を含まないすべての単語がフィルタリングされます。