コード例 #1
0
ファイル: xml.php プロジェクト: vstorm83/propertease
 function GetXMLAttributeX($xml, $attrname, &$dest)
 {
     $value = FSJ_XML::findAttribute($xml, $attrname);
     if (!is_null($value)) {
         $dest = (string) $value;
     }
 }