我的问题是每次包含文件时都需要执行一个函数。
但我知道如果我在函数中使用include,它会搞砸。
那么有没有办法改变include函数来执行里面的函数?或者创建一个“侦听器”,如果我使用include? p>就会触发
示例:
function include_file($path){
if($this->error)
echo $this->error_msg;
include_once($path);
}
谢谢!
答案 0 :(得分:0)
恕我直言,它不会搞砸。但我知道如果我在函数中使用include,它会搞砸。
<强> including_file.php 强>
<?php
include_once ("included_file.php");
echo $test;
?>
<强> included_file.php 强>
<?php
function myFunction()
{
return "Testing 123";
}
$test=myFunction();
?>
每次包含此文件时,都会调用myFunction。除非我误解了这个问题,否则这听起来非常微不足道