我有以下JS:
if(window.location.href.indexOf("search.php") != -1
|| window.location.href.indexOf("list.php") != -1
|| window.location.href.indexOf("view.php") != -1
|| window.location.href.indexOf("contact.php") != -1) {
但想将其转换为 PHP。什么是 PHP 中的 indexOf 等价物或在 PHP 中执行此操作的最佳方法。
我不明白人们在下面链接的 strpos 示例。也许一个更符合我在 JS 中所做的例子?