Home  >  Q&A  >  body text

php stripos 返回不正确

<?php

if (stripos('int', 'int(10)') !== false) {
    echo 'int';
} else {
    echo 'other';
}

是我自己弄错了,看手册烟花了,不好意思

ringa_leeringa_lee2768 days ago750

reply all(1)I'll reply

  • 黄舟

    黄舟2017-04-10 16:48:37

    stripos('int(10)', 'int')

    reply
    0
  • Cancelreply