0

我和这个失去了它......

我所有的内容都由 Apache 以 UTF-8 编码和提供。现在,我获得了一些新的 SCORM 课程,但使用 ISO-8859-1 编码,因此在尝试显示它时会显示解码错误。

我尝试禁用 AddDefaultCharset,将其设置为 ISO-8859-1,将规则应用于 htaccess,但没有 xx 。

由于一些官僚主义的废话,我不允许触摸 SCORM 文件。

SCORM 通过这个 PHP 脚本提供服务:

<?php
$SCOInstanceID = $_GET['SCOInstanceID'] * 1;
$ref=$_GET['ref'];
?>



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>VS SCORM</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<frameset frameborder="0" framespacing="0" border="0" rows="50,*" cols="*" onbeforeunload="API.LMSFinish('');" onunload="API.LMSFinish('');">
    <frame src="api.php?SCOInstanceID=<?php print $SCOInstanceID; ?>" name="API" noresize>
    <frame src="<?php echo $ref; ?>" name="course">
</frameset>
</html>

不是最漂亮的作品,但这就是我现在必须处理的……所以,有什么想法吗?

4

0 回答 0