66 lines
2.2 KiB
PHP
Executable File
66 lines
2.2 KiB
PHP
Executable File
<?php
|
||
namespace App\Services\Github\Mod\FreeNode;
|
||
|
||
use App\Services\Github\Mod\Base;
|
||
//use App\Services\TomTool\Http;
|
||
|
||
class C extends Base {
|
||
|
||
public $aShip; // 必须,注入
|
||
|
||
public function Get($aArticle)
|
||
{
|
||
|
||
$aFreenodeCountry = $this->getFreenodeCountryFromMaster();
|
||
|
||
$sContent = "
|
||
|
||
# 公益免费v2ray/clash节点订阅,每小时更新,最后更新时间:".date('Y-m-d H:i:s')."
|
||
|
||
## 性价比机场推荐:[".$this->aShip["name"]."](https://".$this->aShip["www"].")
|
||
|
||
* 价格低 - 目前七折优惠,折后低至8元。
|
||
|
||
* 速度快 - 晚高峰看youtube高清不卡顿。
|
||
|
||
* 稳定 - 开业于2022年,稳定运营第3年。
|
||
|
||
* 无限试用 - 注册免费试用3天,签到无限试用。
|
||
|
||
".$this->aShip['youhui_str']."
|
||
|
||
点击进入[".$this->aShip["name"]."机场官网](https://".$this->aShip["www"].")。
|
||
|
||
## 免费节点订阅链接
|
||
|
||
".$aFreenodeCountry["str"]."复制下方的v2ray/Clash订阅链接,在客户端添加即可正常使用。
|
||
|
||
v2ray订阅链接:
|
||
|
||
https://".$aArticle["fn_www"]."/feed/v2ray-".date('Ymd').".txt
|
||
|
||
clash订阅链接:
|
||
|
||
https://".$aArticle["fn_www"]."/feed/clash-".date('Ymd').".yaml
|
||
|
||
## 客户端下载
|
||
|
||
| 名称 | 操作系统 | 地址 |
|
||
|------|----------|------|
|
||
| SingBox | Mac/Linux/Android/Ios | [https://sing-box.sagernet.org/clients/](https://sing-box.sagernet.org/clients/) |
|
||
| FlClash | Mac/Linux/Windows/Android | [https://github.com/chen08209/FlClash](https://github.com/chen08209/FlClash) |
|
||
| Clash Verge | Mac/Linux/Windows | [https://github.com/clash-verge-rev/clash-verge-rev](https://github.com/clash-verge-rev/clash-verge-rev) |
|
||
| Clash Meta Android | Android | [https://github.com/MetaCubeX/ClashMetaForAndroid](https://github.com/MetaCubeX/ClashMetaForAndroid) |
|
||
| ClashX Meta | Mac | [https://github.com/MetaCubeX/ClashX.Meta](https://github.com/MetaCubeX/ClashX.Meta) |
|
||
| V2RayN | Windows | [https://github.com/2dust/v2rayN](https://github.com/2dust/v2rayN) |
|
||
| V2RayNG | Android | [https://github.com/2dust/v2rayNG](https://github.com/2dust/v2rayNG) |
|
||
| V2RayU | Mac | [https://github.com/yanue/V2rayU](https://github.com/yanue/V2rayU) |
|
||
|
||
";
|
||
|
||
return $sContent;
|
||
|
||
}
|
||
|
||
}
|