kllxs
kllxs
有想过开发者可以自定义各种js框架来开发吗?有相关教程或者文档吗?
micro.sfx + php文件生成的exe中,如何不显示终端呢? 就像php-win.exe那样 ```shell php-win.exe 文件.php ```
 
C:\project\php\web-view\build-phpwebview\vendor\0hr\php-webview\src\webview\webview.h(1056): fatal error C1083: Unable to open the include file: “WebView2.h”: No such file or directory
源码 [webview](https://github.com/webview/webview) 经过我利用 [phpcpp](https://www.phpcpp.com/) 来构建linux环境的拓展库 [webview for php](https://github.com/KingBes/php-webview-expand) 试试看能否实现?
There is a major bug, other files in the same directory are deleted when the installation window is closed!
### Describe the bug  ### Reproduction Steps ```c #include bool isKeyPressed(int key) { return GetAsyncKeyState(key) & 0x8000; } ``` ```v fn C.isKeyPressed(key int) int pub fn is_key_pressed(key int)int {...
Greeting.zep ```zep namespace Utils; #include "func.h" class Greeting { public static function say() { C.hello(); } } ``` func.h ```c void hello(){ } ```