将数组作为UDF中的输入

时间:2018-11-08 04:49:01

标签: vba excel-vba

我是VBA的新手,我想使用以下几个参数创建用户定义函数:

  1. 具有1行n列的数组

  2. 具有n行和m列的数组* N&M是从0到32的变量

  3. 一个整数值

然后函数将这三个函数相乘得到输出

<?php
  $nps = "";
  $nps_question_2 = "";
  $nps_question_3 = "";

function test_input($data) {
    return htmlspecialchars(stripslashes(trim($data)));
}

if (isset($_POST["send_feedback"])) {

$nps_question_2 = test_input($_POST["nps_question_2"]);
include("db_connect.php");

$nps_question_2_update = $con->prepare("UPDATE codes SET `nps_question_2`=? WHERE `code`=" . $_GET["code"]);
$nps_question_2_update->bind_param("s", $nps_question_2);
$nps_question_2_update->execute();
$nps_question_2_update->close();

header('Location: feedback_form_success.php');
$con->close();
}

?>

我想知道要求用户输入两个数组的语法,以便可以执行该功能。

0 个答案:

没有答案