gpt4 book ai didi

php - 如何从 PHP 调用 Win32 API?

转载 作者:行者123 更新时间:2023-12-04 02:24:35 26 4
gpt4 key购买 nike

我知道我可以使用 COM 组件,但是有没有一种方法可以直接从 PHP 调用 Win32 API(user32.dll、advapi32.dll 等),或者我是否需要包装在 PHP 扩展或 COM 对象中?

最佳答案

见第一条评论here :

The only way I've been able to call Win32 API functions with PHP5 has been through COM and DynamicWrapper.

Here's an example to play a beep sound with your computer speaker:

<?php
$com = new COM("DynamicWrapper");
$com->Register("KERNEL32.DLL", "Beep", "i=ll", "f=s", "r=l");
$com->Beep(5000, 100);
?>

您可以获得更新的 DynamicWrapper here .你必须用 regsvr32 注册它。

关于php - 如何从 PHP 调用 Win32 API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1411657/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com