php 字串比對的相關文章
PHP Match a string exactly - Stack Overflow

PHP Match a string exactly - Stack Overflow

瀏覽:590
日期:2026-04-18
check = 'this is a string 111'; if ($check = 'this is a string') { echo 'perfect match'; } ... You need to use == not just = $check = 'this is a string 111'; if ($check == 'this is a  ......看更多