Parent node: RDAP-Extensions (1.3.6.1.4.1.37476.9000.108.1276945.19361)
Dot notation: | 1.3.6.1.4.1.37476.9000.108.1276945.19361.24174 |
ASN.1 notation: | { iso(1) identified-organization(3) dod(6) internet(1) private(4) enterprise(1) 37476 freeoid(9000) 108 frdlweb-oidplus-rdap(1276945) rdap-extension(19361) ini-parse(24174) } |
OID-IRI notation: | /ISO/Identified-Organization/6/1/4/1/37476/FreeOID/108/1276945/RDAP-Extension/INI-Parse |
WEID notation: | weid:pen:SX0-6Y0-30-RDAP-EXT-INI-1 |
DER encoding: | 06:14:2B:06:01:04:01:82:A4:64:C6:28:6C:CD:F8:11:81:97:21:81:BC:6E |
[META]
TYPE = 1.3.6.1.4.1.37476.9000.108.1276945.19361
DESCRIPTION = "Parses the Objects description like it was in INI format."
DEMO = "https://rdap.frdl.de/oid/1.3.6.1.4.1.37476.9000.108.1276945.19361.24174"
HOMEPAGE = "https://oidplus.viathinksoft.com/oidplus/?goto=oid%3A1.3.6.1.4.1.37476.9000.108.1276945.19361.24174"
# Source code:
<?php
//...
$tmpfname = tempnam(\sys_get_temp_dir(), 'rdap-extra-info-from-dec-inilike');
file_put_contents($tmpfname,
'\n'.
implode('\n', preg_split("/(\n\r)/",
strip_tags(
(string)((array)$theInfo->oidip->objectSection)['description']
)))
);
$extraInfo = \Env\Dotenv::toArray(
$tmpfname
, true, true)
;
unlink($tmpfname);
if(!$extraInfo && (!isset($_GET['partially']) || $_GET['partially'] !== 'include') ){
}else{
$ext[]=[
'type'=>'1.3.6.1.4.1.37476.9000.108.1276945.19361.24174',
'description'=>'Parsed ini file like data in description',
'data'=>$extraInfo,
];
}
//...
ID | Base36 | ASN.1 IDs (comma sep.) | IRI IDs (comma sep.) | RA | Comment | Created | Updated |
---|---|---|---|---|---|---|---|
17741 | DOT | dot-parsed | Dot-parsed | Frdlweb | 2024-04-23 | 2024-04-23 |