获取变量内容并将变量剥离为仅 return 个数字的函数

Function to get variable content and strip variable to only return numbers

尝试从 Woocommerce 给客户的备注内容中提取运输跟踪号,最终将其作为值传递给自定义字段

原函数

    function get_value( $comment, $parameters ) {
    return $comment->content;
}

修改后的功能(不工作)

function get_value( $comment, $parameters ) {
    $tracking_note = $comment->content;
    $new_output = preg_replace( '/[^0-9]/', '', $tracking_note );
    return $new_output->content;
    
}

preg_replace不会return一个对象,也可以参考:https://www.php.net/manual/en/function.preg-replace.php.

只是 return 像这样的变量:return $new_output;