我正在使用html,php,js准备网站,我需要将源代码文件(如.java,.xml)显示为html div作为我网站的一部分。
答案 0 :(得分:1)
就像任何其他文本文件一样。源代码只是文本。带有源代码的文件只是文本文件。
http://php.net/manual/en/function.file-get-contents.php
http://php.net/manual/en/function.fopen.php
http://php.net/manual/en/function.fread.php
$file = file_get_contents('./people.txt', FILE_USE_INCLUDE_PATH);
<div id="sourcecode"> <?= $file ?> </div>
答案 1 :(得分:0)
您可以使用file_get_contents
。
答案 2 :(得分:0)
正如您所说,您在网站中使用js。这是使用jquery的解决方案。希望,这将帮助您将源代码文件显示为html div。
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Testing</title>
</head>
<body>
<div id="include"></div>
<a style="display:none;" id="link" href="javascript:void(0);">Click Test Link</a>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
$("#link").click(function() {
$("#include").load("from.html");
});
$(function() {
$("#link").trigger("click");
});
</script>
</body>
`