在使用 WP ALL Import 导入之前,内嵌 PHP 数学计算代码

Inline PHP code for math calculation before import with WP ALL Import

目前,我遇到了导入问题,我需要为此编写自定义内联 PHP 代码。 我有很多数字,例如,0.001、0.104、0.302 我只想导入这个

我已经使用这个 PHP 代码来计算上面写的数字。

function my_math($param1,$param2){
    return number_format($param1/$param2,3);}

非常感谢您的帮助

// This function uses guard clause to return a string
function my_math($param1, $param2) {
    
    // Set number variable to check if statements on
    $num = number_format($param1 / $param2, 3);

    // Return "bad" if above .2
    if ($num > .2)
        return "bad";

    // Return "good" if below .1    
    if ($num < .1)
        return "good";

    // Default return if none of the above 
    return "medium";
}

编辑:添加了文档和额外的代码片段


这里是一个没有 $num 变量的例子

function my_math($input) {

    if ($input > .2)
        return "bad";

    if ($input < .1)
        return "good";

    return "medium";
}