7 lines
158 B
PHP
7 lines
158 B
PHP
<?php
|
|
include("fx.php");
|
|
$data = file_get_contents("php://input");
|
|
$res = json_decode($data,true);
|
|
$v = Fx($res["a"],$res["b"]);
|
|
echo $v;
|