<?php
include_once("../include/common.php");  -----引入A文件
include_once("../include/moneychange.php");----引入B文件
echoName();-----B文件中的方法
?>问题出来了,现在在B文件中用到了A文件的变量,为什么提示找不到呢,谁能给个解决方法?