fileA.php:需要function.inc.php并使用该包含文件中的x()
fileB.php:需要fileA.php 用户调用fileB.php来获取fileA.php
function.inc.php: function x()
- 返回调用它的文件名
什么是PHP服务器变量或者是什么从function.inc.php 中的获取fileA.php的名称?
mysql_query() or die(mail( {info about error as well as which file caused it} )
基于以下答案 - 这有效:
function x($q){
mysql_query($q) or die(mail('yourself@example.com,'error @ '.$_SERVER['PHP_SELF'] , serialize(debug_backtrace()) . "\n\n".mysql_error()));
}