7月122022
PHP上传png,jpg,jpeg图片格式并转换成webp代码
前段
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta charset="UTF-8">
<title>图片(jpg,jpeg,png)转webp</title>
<style>...阅读全文
评论:0条
7月122022
7月122022
PHP酷狗音乐采集类
php
/**
* 酷狗API类
* @author Flc <2015-08-27 22:51:24>
*/
$kugou =new kugou();
$lists = $kugou->getList('儿歌');
print_r($lists);
$music = $kugou->getM...阅读全文
评论:0条
7月122022
PHP利用ctrl+v实现粘贴截图完成上传功能
<?php
header("Access-Control-Allow-Origin:*");
$url = 'http://'.$_SERVER['HTTP_HOST'];
$file = (isset($_POST["file"])) ? $_POST["file"] : '';
if($file)
{
$d...阅读全文
评论:0条
7月122022
PHP控制文件下载速度
// 将发送到客户端的本地文件
$local_file = 'test-file.zip';
// 文件名
$download_file = 'your-download-name.zip';
// 设置下载速率(=> 20,5 kb/s)
$download_rate = 20.5;
if(file_exists($l...阅读全文
评论:0条
7月122022
7月122022
7月122022
php根据关键字搜索百度网盘资源
<?php
//返回
/*
'title' => 资源名称
'downUrl' => 资源下载链接
'fileSize' => 资源大小
'format' => 资源类型
'shareUser' => 共享用户
*/
$url = 'htt...阅读全文
评论:0条
7月122022
PHP curl伪造ip(用于刷票)
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, “http://localhost/2.php”);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(‘X-FORWARDED-FOR:8.8.8.8′, ‘CLIENT-IP:8.8.8.8′));...阅读全文
评论:0条
7月122022