コード例 #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;
     }
 }