<?php$a='1,19,34';//无规律的N个数字用逗号分隔$b="20";//任意一个单数/*使用场景:$a 存了城市ID 用户$b 是城市ID=20 他只能在$a 有20的地方浏览 其他的城市不能 假如使用函数 in_array $a='1,20,18,19'; $b='20'; 那么他也可以在1 18 19浏览了 如何实现他只能在20这个城市浏览 其他的不能浏览呢 */
实在转不弯了
回复讨论(解决方案)
in_array 的第二个参数是数组,你用字符串当然不行
要 in_array($b, explode(',', $a))
我知道是这样 但是这样就出现了 $a='1,20,18,19'; $b='20'; 那么他也可以在1 18 19浏览了
如何实现他只能在20这个城市浏览 其他的不能浏览呢
比如
url.php?city=20 (数据库存 1,20,18,19)
用户A所在城市为20
如果使用了 in_array
url.php?city=1 url.php?city=18 url.php?city=19 都是可以访问的
如何实现 他只能访问 url.php?city=20
你问的应该是权限怎么设置的问题吧,这个根$a没有任何关系;$a只是存储了所有城市的ID,但$b里才是用户的城市ID。
你应该在浏览城市的地方,去判断$b,然后允许$b的城市禁止其他城市;这个根$a没有关系。
和$a 的关系是紧密的 因为$a 存储了城市id 需要用$a中的某一个值和$b 做对比 现在就卡在怎么对比上了
也就是
if($a怎么对比$b){
echo "yes";
}else{
echo "no";
}
用in_array肯定是不行的
你怎么回事?
if(in_array($b, explode(',', $a))) {
//这里是允许访问的内容
}
版主这样是不行的
也行我表达的不够清晰
我已经拆分34个字段用switch进行判断了
仔细琢磨过了 用逗号分隔 进行精确判断好像做不到

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
