84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
情况:用PHP写了一些权限比较大的文件,作为服务器每天定时跑的脚本。需求:这些文件希望只能在服务器中以cli的方式去执行,而其他情况(比如web请求),都不执行
目前知道的是可以将这些文件移出web访问目录但是这样存在一个问题,我的脚本统一git来管理的,移出web目录,不方便git操作
那么请问,如何实现不修改文件目录的情况,禁止cli以外的环境下请求指定的PHP文件呢?
小伙看你根骨奇佳,潜力无限,来学PHP伐。
PHP_SAPI
if('cli'!==PHP_SAPI){ //XXX }else { //xxx }
PHP_SAPI