windows搭建代理服务器软件 CCProxy v8.0
需要在设置里点击 高级-网络-取消禁止局域网外部用户访问。
2020版
ccproxy.rar
2016版
https://www.jb51.net/softs/2199.html
公众号模板消息发送API接口 PHP
我们可以通过以下代码来获取Access Token:
function getAccessToken($appId, $appSecret) {
$apiUrl = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appId . ...
PHP获取远程文件大小
<?php
$url = "https://www.x.com/a.jpg"; // 替换为你要获取大小的远程文件URL
$headers = get_headers($url, 1);
if (isset($headers['Content-Length'])) {
$fileSize = $headers['Content-Le...
IDM 6.41 绿色便携版
http://www.qiuquan.cc/download/idm.html?33857_html
IDM(Internet Download Manager)批量下载 自定义文件名方法
鼎鼎大名的IDM居然不支持自定义文件名的功能,但是从网上找到一位好友写的辅助工具可以实现批量下载自定义文件名的效果。
首先打开辅助工具,把文件名和下载地址配置进去,然后点击推入,这时候IDM软件就新增好下载任务了。
具体格式为:
1.jpg,http://www.xx.com/dfasdf.jpg
一行一个,还有其他语法,具体看原文:https://www....
腾讯视频API接口 PHP版本
<?php
php动态获取腾讯视频mp4地址
$jsonstr=file_get_contents('http://vv.video.qq.com/getinfo?vids='.$videosrc.'&platform=101001&charge=0&otype=json');
$jsonstr=ltrim($jsonstr,'...
PHP循环输出数组
$my_kefu_name="1,2,3";
$grade = explode(",", $my_kefu_name);
foreach ($grade as $value) {
echo $value;
}
PHP判断在数组中排第几
<?php $grades = array(85, 90, 73, 79, 92, 88, 75);
$rank = array_search(79, $grades);
echo "您的成绩在数组中的排名是第 $rank 名。";
?>