Files
extism/php/example/Example.php
2022-09-01 19:53:31 -06:00

10 lines
271 B
PHP

<?php
require("Plugin.php");
$wasm = file_get_contents("../wasm/code.wasm");
$plugin = new Plugin($wasm);
$output = $plugin->call("count_vowels", "this is an example");
$json = json_decode(pack('C*', ...$output));
echo "Vowels counted = " . $json->{'count'} . PHP_EOL;