首页
发现
标签
搜索
APP下载
注册
登录
首页
发gggg2现
榜单
标签
APP下载
搜索
注册
登录
搜索
LisonRead
本次搜索耗时
0.073
秒,为您找到
298
个相关结果.
搜书籍
搜文档
解析url提取/截取参数 $urlarr=par
42
2019-07-19
《PHP》
解析url提取/截取参数 $urlarr = parse_url($url);//获取的是host $urlverify=substr($url,strpos($url,"?")+1);//把问号前的排除掉 parse_str($urlverify, $res_param);
functionsen_txt_html($str
42
2018-08-31
《PHP》
function sen_txt_html($string) {//内容过滤 $string = str_replace(' ', ' ', $string); $string = str_replace('&', '&', $string); $string = str_replace('—', '—', $...
input遮住密码框不保存上次记录inputtyp
42
2019-06-13
《其它前端》
input遮住密码框不保存上次记录 <input type="password" name="password" autocomplete="new-password">
functionsend_post2($url,$
42
2018-05-16
《PHP》
function send_post2($url, $post_data,$i=1) { $postdata = http_build_query($post_data); $options = array( 'http' => array( 'method' => 'POST', 'heade...
禁止IP访问 $ip_prefix='1
42
2018-09-29
《PHP》
禁止IP访问 $ip_prefix = '192.168.0.1'; if (substr($_SERVER['REMOTE_ADDR'], 0, strlen($ip_prefix)) != $ip_prefix ) die('Access denied');
挂后台启动运行进程nohup php -v /de
42
2023-04-17
《Linux系统》
挂后台启动运行进程 nohup php -v >/dev/null 2>&1 & 这个后会有一个PID号 再top命令,查看PID号占用CPU情况
正则提取页面标签内容 publicfunctio
42
2018-08-29
《PHP》
正则提取页面标签内容 public function tel(){ // header('Content-type:text/html;charset=GBK'); $url='https://shouji.supfree.net/fish.asp?cat='.$_REQUEST['tel']; $str=$this->httpsRequest...
php正则验证手机邮箱是否数字 $email=&
42
2018-07-24
《PHP》
php正则验证手机邮箱是否数字 $email = '/^(\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)?$/'; $mobile = '/^1[0-9]{10}$/'; $number = '/^\d+$/'; if(!preg_match($email,$info)){ }
修改nginx配置,使其支持php方式一:yum
42
2022-04-19
《Linux系统》
修改nginx配置,使其支持php 方式一: yum install nginx #安装nginx vim /etc/nginx/conf.d/test.conf server { listen 80; #listen [::]:80; server_name 39.105.1.170; client_max...
关于php中正则匹配包括换行符在内的任意字符 p
42
2018-11-29
《PHP》
关于php中正则匹配包括换行符在内的任意字符 preg_match_all('/<div class="list">.*?<\/div>/is', $content, $data);
1..
«
17
18
19
20
»
..30