使用mvc模式使用自动刷新div标签时出现问题。请帮帮我......这是我的代码...... 包含文件名与one1.php:
<?php
$textnameObj = new textname();
$textname = $textnameObj->getCont('status','1');
echo $textname['details'];
?>
在index.php中调用包含文件名:
<html>
<head>
<script type="text/javascript">
setInterval("$('#autoref').load('includes/one1.php');", 10000);
</script>
</head>
<body>
<div id="autoref">
<?php include('includes/one1.php'); ?>
</div>
</body></html>
第二次刷新时我遇到了这个错误...... 致命错误:Class&#39; textname&#39;在第2行的includes / one1.php中找不到
答案 0 :(得分:1)
在index.php
中,您已包含textname
类文件。但是,如果您单独调用includes/one1.php
,则不会定义类textname
。
在includes/one1.php
中,您必须include_once一个文件,其中定义了textname
类。