摘要:
文档地址 https://rustwasm.github.io/docs/wasm-bindgen/examples/without-a-bundler.html 创建项目 cargo new --lib my-wasm 添加依赖Cargo.toml [dependencies] wasm-bind 阅读全文
摘要:
que.php <?php class MsgQueue { public $queue; public function __construct($queue) { $this->queue = $queue; } public function push($data, $type = 1) { 阅读全文