获取 XML 文件的相对路径的绝对路径

Get absolute path of a relative path of a XML file

是否可以猜测我为加载 XML 文件指定的相对路径的绝对路径?这是我的编码:

$strXML = __DIR__ . "/../xml/file.xml";
$xmlFile = simplexml_load_file($strXML);

$strPath = fullPathFunction($xmlFile);  //Desired function

您可以使用realpath函数:

$strXML = "../xml/file.xml";
$xmlFile = simplexml_load_file($strXML);

$strPath = realpath($strXML);