mirror of
https://github.com/extism/extism.git
synced 2026-01-14 00:08:04 -05:00
10 lines
271 B
PHP
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; |