php如何读取3389端口
时间:2021-07-01 10:21:17
帮助过:17人阅读
例子,php获取系统3389端口信息。
- // bbs.it-home.org 程序员之家收集
- $regkey = 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\Tds\tcp\PortNumber';
- $shell = new COM('WScript.Shell');
- var_dump($shell->RegRead($regkey));
- ?>
|