PHP盾牌
首页
PHP加密
批量加密
授权代码
API接口
导航
PHP加密
批量加密
授权代码
API接口
PHP盾牌
首页
PHP加密
批量加密
授权代码
API接口
首页
授权代码
IP锁
preg_match('/^(' . str_replace(array('.', '*'), array('\.', '.*'), '127.0.0.1|192.168.1.1') . ')/', $_SERVER['SERVER_ADDR']) || die('ip is not allow');
域名锁
preg_match('/^(' . str_replace(array('.', '*'), array('\.', '.*'), 'baidu.com|qq.com') . ')/', $_SERVER['HTTP_HOST']) || die('ip is not allow');
时间锁
strtotime('2021-08-08 08:08:08') > time() || die('time is not allow');
路径锁
strpos(__FILE__, 'index.php') || die('filename is not allow');