<?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进行判断了
仔细琢磨过了 用逗号分隔 进行精确判断好像做不到

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
