12 lines
475 B
PHP
12 lines
475 B
PHP
<?php
|
|
header("Content-Type: application/json");
|
|
@require_once "/var/www/html/api/wevia-fast-path-v3.php";
|
|
$r = function_exists("wevia_fast_path") ? wevia_fast_path("aide") : null;
|
|
$snapshot = function_exists("__ambre_truth_snapshot") ? __ambre_truth_snapshot() : null;
|
|
echo json_encode([
|
|
"fn_fast_path" => function_exists("wevia_fast_path"),
|
|
"fn_helper" => function_exists("__ambre_truth_snapshot"),
|
|
"fp_result" => $r,
|
|
"snapshot" => $snapshot,
|
|
], JSON_PRETTY_PRINT);
|