Releases: wasmerio/wasmer-php
Releases · wasmerio/wasmer-php
1.1.0
1.0.0
0.5.1
1.0.0-beta1
This release is basically a complete rewrite of Wasmer PHP extension. Previous releases were built on top of a
non-standard API. We are now using the standard [Wasm C API][wasm-c-api]:
<?php declare(strict_types=1);
$engine = wasm_engine_new();
$store = wasm_store_new($engine);
$wasm = file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'hello.wasm');
$module = wasm_module_new($store, $wasm);
function hello_callback() {
echo 'Hello Wasmer (PHP)!' . PHP_EOL;
}
$functype = wasm_functype_new(new Wasm\Vec\ValType(), new Wasm\Vec\ValType());
$func = wasm_func_new($store, $functype, 'hello_callback');
wasm_functype_delete($functype);
$extern = wasm_func_as_extern($func);
$externs = new Wasm\Vec\Extern([$extern]);
$instance = wasm_instance_new($store, $module, $externs);
wasm_func_delete($func);
$exports = wasm_instance_exports($instance);
$run = wasm_extern_as_func($exports[0]);
wasm_module_delete($module);
wasm_instance_delete($instance);
wasm_store_delete($store);
wasm_engine_delete($engine);
wasm_func_call($run, new Wasm\Vec\Val());
0.5.0
Features
Extension
- #71 Use pre-build dynamic libraries (@Hywan)
- #70 Improve function invocation time by 77% (@Hywan)
- #69 Introduce the
wasm_instance
structure (@Hywan) - #68 Add the
WasmArrayBuffer::grow
method (@Hywan)
Runtime
Bug/security fixes
Documentation
- Many improvements related to the new features and bug fixes.