寻找一种方法来调用在原始文件中包含“functions.php”的php函数。
这就是我的 index.php 文件中的内容,因此当我单击链接时,它会将 (new.php) 加载到 (#container) div 中。
<?php include 'functions.php' ?>
<script type="text/javascript">
$(document).ready(function() {
$('a').click(function(e) {
$('#container').load(new.php).hide().fadeIn(500);
return false;
});
});
</script>
所以在我的new.php 中,我想调用一个位于functions.php 中的函数,但显然我得到了一个未定义的错误。
<?php some_func() ?>
我知道您可以在 new.php 中添加另一个包含“functions.php”
但由于functions.php包含mysql连接/查询和其他包含等。我真的不想继续重新加载它。
那么有什么办法可以将functions.php重新加载到新加载的div中并从中调用函数吗?