تابع ووکامرسی wc_format_refund_total فرمت تعداد استرداد به مقدار منفی
تابع ووکامرسی wc_format_refund_total – فرمت تعداد استرداد به مقدار منفی
Syntax – سینتکس
(float) wc_format_refund_total( (number) $amount );
Parameters – پارامتر ها (1)
- 1- $amount (number)
Usage – نحوه استفاده
if ( !function_exists( 'wc_format_refund_total' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-formatting-functions.php'; } // The amount. $amount = null; // NOTICE! Understand what this does before running. $result = wc_format_refund_total($amount);
Defined – محل تعریف
/includes/wc-formatting-functions.php
function wc_format_refund_total( $amount ) { return $amount * -1; }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر