1 Star 3 Fork 4

codervibe/SMSBombing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
generateMd.php 773 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaoxuan 提交于 2024-05-04 18:35 . fix: Update packet
<?php
/*
* This file is part of james.xue/sms-bombing.
*
* (c) xiaoxuan6 <[email protected]>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*
*/
$class = new class () {
public function __invoke()
{
$arr = json_decode(file_get_contents('api.json'), true);
$items = '';
foreach ($arr as $key => $value) {
if (! empty($value['url'])) {
$parse = parse_url($value['url']);
$items .= sprintf('[%s](%s)', $parse['scheme'] . '://' . $parse['host'], $parse['scheme'] . '://' . $parse['host']) . PHP_EOL;
}
}
file_put_contents('./Links.md', $items);
echo 'file put done.';
}
};
$class();
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/codevibe/SMSBombing.git
[email protected]:codevibe/SMSBombing.git
codevibe
SMSBombing
SMSBombing
v2

搜索帮助