Curl取HTTP状态码 PHP代码function curl_200($url){ $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); //设置URL curl_setopt($curl, CURLOPT_HEADER, 1); //获取Header curl_setopt($curl,CU...
<?php #使用示例 echo getBaseDomain('http://blog.jp.goo.ne.jp/index.php','domain');echo "\n"; echo getBaseDomain('http://51.ca/index.php','domain');echo "\n"; echo getBaseDomain(...
<?php // 实例1 /** * @start time */ function proStartTime() { global $startTime; $mtime1 = explode(" ", microtime()); $startTime = $mtime1[1] + $mtime1[0]; } /** * @En...
<?php if(getspider()){ exit('假的搜索引擎!'); } function getspider(){ $访问UA = strtolower($_SERVER['HTTP_USER_AGENT']); $访问IP = isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : ...
<?php /** * 检测文件的真实类型 * @param string $srcPath 文件路径 * @return string $realType 文件真实类型 */ $imgurl = 'https://ae01.alicdn.com/kf/HTB1w5xdS4TpK1RjSZR0762EwXXa7.png'; echo file_type_detect($img...
使用方法:创建个PHP文件放到你的网站根目录里面,访问后不会出现结果,等待个20秒左右关闭页面,就会自动执行了。如果不重启php服务器 或者重启服务器,get监控一直会处于运行状态。测试了一下 秒赞网的监控,效果还是很不错的。代码如下:<?php //设置脚本运行不超时 set_time_limit(0); //即使浏览器关闭还继续运营 ignore_user_abort(true);...
CSS压缩方法:1、新建一个 style.php 文件,代码如下<?php header('Content-type: text/css'); ob_start("compress"); function compress($buffer) { /* 删除注释 */ $buffer = preg_replace('!/\*[^*]*\*+...
php正则匹配A标签href并替换$file = "<a href="http://www.baidu.com">baidu</a>"; $file = preg_replace('/<a .*?href="(.*?)".*?>/is',"<a href='###'>&quo...
<?php $img_array = glob("./*.{gif,jpg,png}",GLOB_BRACE); $img = array_rand($img_array); header("location:$img_array[$img]"); echo $img; ?>
<style type="text/css"> table.tftable {font-size:15px;color:#333333;width:100%;border-width: 2px;border-color: #8FBC8F;border-collapse: collapse;} table.tftable th { width: 30%; fon...