LoginSignup
22
23

More than 5 years have passed since last update.

文字列が含まれているかの判定

Posted at
test.php
// $stringにABCが含まれているか
if (strpos($string, "ABC") === FALSE)
{
    // 文字列が無かった場合
}
else
{
    // 文字列があった場合
}
22
23
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
22
23