PHP突破百度图片防盗链

PHP突破百度图片防盗链

利用PHP突破百度图片防盗链Referer是header的一部分,当浏览器向web服务器发送请求的时候,一般会带上Referer,告诉服务器该请求是从哪个页面链接过来的,如果来源的网址不属于本站或在黑名单中,则服务器不响应浏览器的请求,达到了防盗链的目的。我们可以利用PHP伪造一个请求的HEAD头,来突破百度图片的防盗链机制。把以下代码保存为 img.php 文件<?php $url ...

PHP 2021-05-04 PM 1345次 0条
php post 提交

php post 提交

<?php function request_post($url = '', $post_data = array()) { if (empty($url) || empty($post_data)) { return false; } $o = ""; foreach ( $post_data as $k =>...

PHP 2021-03-22 PM 1423次 0条
php 获取文件扩展名

php 获取文件扩展名

/**获取文件扩展名@param 网页URL $url@return string@author zero<512888425@qq> */function getUrlFileExt($url){$ary = parse_url($url); $file = basename($ary['path']); $ext = explode('.',$file); return is...

PHP 2021-02-28 PM 1524次 0条
php 不重复的随机数

php 不重复的随机数

/** * 不重复的随机数 * 用作采集时的文件,批量下载进防止文件重复 */ function random_id() { $chars = 'abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $chars_cnt = strlen($chars)-1; $id = '';...

PHP 2021-02-28 PM 1429次 0条
php 处理禁用HTML但允许换行的内容

php 处理禁用HTML但允许换行的内容

/*** 处理禁用HTML但允许换行的内容 * * @access public * @param string $msg 需要过滤的内容 * @return string */ function TrimMsg($msg) { $msg = trim(stripslashes($msg)); $msg = nl2br(htmlspecialchar...

PHP 2021-02-28 PM 1328次 0条
php 获得某天前的时间戳

php 获得某天前的时间戳

//获得某天前的时间戳 function getxtime($day) { $day = intval($day); return mktime(23,59,59,date("m"),date("d")-$day,date("y")); }

PHP 2021-02-28 PM 1596次 0条
php 生成字母前缀

php 生成字母前缀

//生成字母前缀 function letter_first($s0) { $firstchar_ord=ord(strtoupper($s0{0})); if (($firstchar_ord>=65 and $firstchar_ord<=91)or($firstchar_ord>=48 and $firstchar_...

PHP 2021-02-28 PM 1301次 0条
PHP escape unescape

PHP escape unescape

/ PHP escape /public static function escape($str) {preg_match_all("/[\x80-\xff].|[\x01-\x7f]+/",$str,$r); $ar = $r[0]; foreach($ar as $k=>$v) { if(ord($v[0]) < 128) { $a...

PHP 2021-02-28 PM 1869次 0条
php循环显示文件,返回array

php循环显示文件,返回array

//循环显示文件,返回array public static function dirAllFile($dirName) { // global $array; $array = array(); // util::pre_print_r($array); if ($handle = opendir("$...

PHP 2021-02-28 PM 1448次 0条
php循环删除目录和文件函数

php循环删除目录和文件函数

//循环删除目录和文件函数 public static function delDirAndFile($dirName, $delDir = 0) { if ($handle = opendir("$dirName")) { while (false !== ( $item = readdir($h...

PHP 2021-02-28 PM 1442次 0条
php 截取字符串

php 截取字符串

/**$sourcestr 是要处理的字符串$cutlength 为截取的长度(即字数) */static function cut_str($sourcestr, $cutlength, $type = true){$returnstr = ''; $i = 0; $n = 0; $str_length = strlen(trim($sourcestr)); //字符串的字节数 w...

PHP 2021-02-28 PM 1336次 0条