_wc_get_product_terms_name_num_usort_callback داده به صورت عدد صحیح
تابع ووکامرسی _wc_get_product_terms_name_num_usort_callback – ترتیب داده به صورت عدد صحیح ( تبدیل به نوع داده integer )
Syntax – سینتکس
(int) _wc_get_product_terms_name_num_usort_callback( (WP_POST) $a, (WP_POST) $b );
Parameters – پارامتر ها (2)
- 1- $a (WP_POST)
- 2- $b (WP_POST)
Usage – نحوه استفاده
if ( !function_exists( '_wc_get_product_terms_name_num_usort_callback' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-term-functions.php'; } // object $a $a = null; // object $b $b = null; // NOTICE! Understand what this does before running. $result = _wc_get_product_terms_name_num_usort_callback($a, $b);
Defined – محل تعریف
/includes/wc-term-functions.php
function _wc_get_product_terms_name_num_usort_callback( $a, $b ) { $a_name = (int) $a->name; $b_name = (int) $b->name; if ( $a_name === $b_name ) { return 0; } return ( $a_name < $b_name ) ? -1 : 1; }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر