如果问题不明确,我会想解释。
I m working on an existing PHP download script for videos and some parts of it are broken. There s code in there that s supposed to place a specific member code inside the video file before download, but it doesn t work. Here s the code:
//embed user s code in video file
$fpTarget = fopen($filename, "a");
fwrite($fpTarget, $member_code);
fclose($fpTarget);
成员——代码为随机6-指示代码。
现在,如果我是文本档案,那将给我带来意义,但既然它有录像档案,那么这怎么可能奏效,应该做什么? 如果在录像中添加了成员代码,那么我如何在下载后看到它? 我没有录像档案的经验,因此,我们不了解任何帮助(同样欢迎修改现行法典或新法典)。
我很抱歉,我可以更确切地描述一下该法典应该做些什么,我试图把这一点说出来。