代码之家  ›  专栏  ›  技术社区  ›  Alberto Muñoz Sánchez

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

  •  0
  • Alberto Muñoz Sánchez  · 技术社区  · 6 年前

    $strXML = __DIR__ . "/../xml/file.xml";
    $xmlFile = simplexml_load_file($strXML);
    
    $strPath = fullPathFunction($xmlFile);  //Desired function
    
    1 回复  |  直到 6 年前
        1
  •  2
  •   Nomad Webcode    6 年前

    你可以用 realpath 功能:

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

    This example works for me