示例#1
0
文件: AFSEncode.php 项目: armic/erpts
 function getAFSForList($afsID)
 {
     $afs = new AFS();
     $afs->selectRecordForList($afsID);
     if (!($domDoc = $afs->getDomDocument())) {
         return false;
     } else {
         $xmlStr = $domDoc->dump_mem(true);
         return $xmlStr;
     }
 }