Re: GUID z poziomu AMBasica w HMP
Generuj plik xml za pomocą php.
Za pomocą
http://www.adres_strony.pl/guid.phpPrzykładowo guid php może wyglądać tak:
Kod:
<?php
function guid(){
if (function_exists('com_create_guid')){
return com_create_guid();
}else{
mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up.
$charid = strtoupper(md5(uniqid(rand(), true)));
$hyphen = chr(45);// "-"
$uuid = chr(123)// "{"
.substr($charid, 0, 8).$hyphen
.substr($charid, 8, 4).$hyphen
.substr($charid,12, 4).$hyphen
.substr($charid,16, 4).$hyphen
.substr($charid,20,12)
.chr(125);// "}"
return $uuid;
}
}
header("Content-type: text/xml");
header("Content-Disposition: attachment; filename=guid.xml");
header("Cache-control: private");
echo '<?xml version="1.0" encoding="ISO-8859-2" standalone="no"?>';
echo '<guidy>';
echo '<guid value="test">'.guid().'</guid>';
echo '</guidy>';
?>
Następnie w AMBasic otwórz ten XML za pomocą
Kod:
dispatch xml = "Microsoft.XMLDOM"
xml.Load("www.adres_strony.pl/guid.php")