找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 2747|回复: 16

[iptv信源 资源分享或寻求] 看常熟PHP源码。

[复制链接]
发表于 2021-4-6 15:59 | 显示全部楼层 |阅读模式
本帖最后由 可酷可乐 于 2021-4-6 18:39 编辑

又更新了一下。之前代码确实有点问题。这次确认能播放了。直接传上来了。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×

评分

参与人数 1恩山币 +2 收起 理由
cs8*** + 2 强大的恩山!(以下重复1万次)

查看全部评分

我的恩山、我的无线 The best wifi forum is right here.
头像被屏蔽
发表于 2021-4-6 16:01 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 16:18 | 显示全部楼层
KFK 发表于 2021-4-6 16:01
这也能放得出?

这编辑器有点问题。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 16:23 | 显示全部楼层
  1. <?php
  2. /*
  3. 常熟新闻综合,xwzh
  4. 常熟民生经济,msjj
  5. */
  6. $id=$_GET['id'];
  7. $json=dpost("https://api-2019-xmt.21cs.cn/b202002_tv_live_user/Channel_GetChannelList","{}");
  8. $data=json_decode($json,TRUE);
  9. if($id=='xwzh'){
  10.     $play_url=$data['list'][0][0]['channel_stream_url'];
  11. }elseif($id=='msjj'){
  12.     $play_url=$data['list'][0][1]['channel_stream_url'];
  13. }else{
  14.     exit("ERROR!");
  15. }
  16. header("Location: ".$play_url);



  17. function dpost($url, $post = NULL) {
  18.     $d = parse_url($url);
  19.     $host = str_replace($d['path'],"",$url);
  20.     $headers = array(
  21.         "Content-Type: application/json;charset=UTF-8",
  22.         "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36",
  23.         "Referer: ".$host,
  24.         "Origin: ".$host,
  25.         "REMOTE_ADDR: ".$ip,
  26.         "X_FORWARDED_FOR: ".$ip
  27.       );
  28.     $ch = curl_init();
  29.     curl_setopt($ch, CURLOPT_URL, $url);
  30.     curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  31.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  32.     curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
  33.     curl_setopt($ch, CURLOPT_TIMEOUT, 10);
  34.     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  35.     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  36.     if (!empty($post)) {
  37.         curl_setopt($ch, CURLOPT_POST, TRUE);
  38.         curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
  39.     }
  40.     $re = curl_exec($ch);
  41.     curl_close($ch);
  42.     return $re;
  43. }
  44. ?>
复制代码


我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 17:25 | 显示全部楼层
播放不了呢 咋回事
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 18:03 | 显示全部楼层
不要这么复杂,可以简单些,让我等小白也能看懂呀
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 18:04 | 显示全部楼层
播放不了 请大神修复     
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 18:14 | 显示全部楼层
播放不了!!!

感谢楼主研究,能查下原因吗。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 18:27 | 显示全部楼层
$data=json_decode($json,TRUE);
if($id=='xwzh'){
    $play_url=$data['list'][0][0]['channel_stream_url'];
}elseif($id=='msjj'){
    $play_url=$data['list'][0][1]['channel_stream_url'];
}else{
    exit("ERROR!");
}
这段代码有问题

点评

已经修复了。~  详情 回复 发表于 2021-4-6 18:38
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 18:38 | 显示全部楼层
sqrxz 发表于 2021-4-6 18:27
$data=json_decode($json,TRUE);
if($id=='xwzh'){
    $play_url=$data['list'][0][0]['channel_stream_ ...

已经修复了。~
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-7 08:34 | 显示全部楼层
强大的恩山!感谢楼主
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-7 08:49 | 显示全部楼层
感谢楼主分享
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-15 20:50 | 显示全部楼层
哎哟不错哦给你点赞
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-15 21:13 | 显示全部楼层
貌似不能看啊
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-15 21:17 | 显示全部楼层
大神在吗,这个php代码我这边测试不能播放啊,potplayer和黑鸟都不行
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-26 03:04

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表