大佬请帮忙看看这段代码是否有问题
随风
一级用户组 一级用户组
2021-11-16 20:30
楼主

1 <?php //获取配置信息
2 $xn_message_sound=kv_get('xn_message_sound');
3 $open_check=xn_message_sound['open_check'];
4 $sound_id=xn_message_sound['sound_id'];
5 $sound_url=xn_message_sound['sound_url'];
6 $sound_url?$sound_file=$sound_url:$sound_file="./plugin/xn_message_sound/sound/".$sound_id.".wav";
7 if($open_check){
8 if(!empty($uid)&&$user['unread_notices']!=0) {
9         $return  = '<audio id="bgAudio" controls="controls" autoplay="autoplay" hidden="hidden">
10 <source src="'.$sound_file.'" type="audio/wav">
11 </audio>';
12       echo $return;
13    }
14 }
15 ?>
 
第十行 无法获取 第六行 的网址,输出后 sre="x" 只有一个字母 x ,请问这个如何解决

 收藏 分享
最新回复 (6)
  • CF
    管理员组
    2021-11-16 21:20
    沙发
    <?php //获取配置信息
    $xn_message_sound=kv_get('xn_message_sound');
    $open_check=xn_message_sound['open_check'];
    $sound_id=xn_message_sound['sound_id'];
    $sound_url=xn_message_sound['sound_url'];
    $sound_file=$sound_url;
     if(empty($sound_url)){
     	$sound_file="./plugin/xn_message_sound/sound/".$sound_id.".wav";
     	}
     if($open_check){
     if(!empty($uid) && $user['unread_notices']!=0) {
    	$return  = '<audio id="bgAudio" autoplay="autoplay" hidden="hidden" src="'.$sound_file.'" type="audio/wav">Your browser does not support the <code>audio</code> element.</audio>';
           echo $return;
        }
     }
     ?>
    找不到工作/(ㄒoㄒ)/~~
  • 随风
    一级用户组
    2021-11-16 21:41
    板凳
    CF &lt;?php //获取配置信息 $xn_message_sound=kv_get('xn_message_sound'); $open_check=xn_message_sound[' ...

    感谢解答!但是输出还是 src="x" 这样😁会不会是PHP版本的问题

  • CF
    管理员组
    2021-11-16 21:49
    地板
    随风 感谢解答!但是输出还是 src="x" 这样😁会不会是PHP版本的问题

    看你这段代码就明白你这个插件的用途了(我感觉没必要做声音通知,很少有论坛这样做);方便的话可以私信给我插件地址,我可以明天看看

    找不到工作/(ㄒoㄒ)/~~
  • 随风
    一级用户组
    2021-11-16 21:51
    4楼
    CF 看你这段代码就明白你这个插件的用途了(我感觉没必要做声音通知,很少有论坛这样做);方便的话可以私信给我插件地址,我可以明天看看

    非常感谢!上附件

    上传的附件:
  • 随风
    一级用户组
    2021-11-16 21:55
    5楼

    把 src="'.$sound_file.'" 改成 src="'.$xn_message_sound['sound_url'].'" 这样才能提取地址

  • 随风
    一级用户组
    2021-11-16 21:56
    6楼

    搞定了  感谢感谢!!

  • 游客
    7楼
    登录 后参与评论
返回
随风
一级用户组
主题数
帖子数
精华数