由于有些编辑器用embed标签来插入视频,但是新的有些浏览器不支持,治本就是直接改编辑器,治标凑合如下:
1 $video='<embed src="http://xxxxx.com/flash/kl.mp4" type="video/x-ms-asf-plugin" width="550" height="400" autostart="false" loop="true" />'; 2 function cvideo($video){ 3 $video=explode(" ",$video); 4 array_shift($video); 5 array_pop($video); 6 $str="<video ".$video[2]." ".$video[2]." controls="controls">"."<source ".$video[0]." type="video/mp4"> </video> "; 7 return $str; 8 }
返回的 $str 为 “
<video width="550" height="400" controls="controls">
<source src="http://xxxxx.com/flash/kl.mp4" type="video/mp4">
</video>
”