تابع ووکامرسی wc_format_hex تبدیل رشته به هگز hex

تابع ووکامرسی wc_format_hex تبدیل رشته به هگز hex

تابع ووکامرسی wc_format_hex – تبدیل نوع داده ای رشته خام به نوع داده ای رشته هگز

Syntax – سینتکس

(string) wc_format_hex( (string) $hex ); 

Parameters – پارامتر ها (1)

  • 1- $hex (string)

Usage – نحوه استفاده

if ( !function_exists( 'wc_format_hex' ) ) { 
    require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-formatting-functions.php'; 
} 
  
// The hex. 
$hex = ''; 
  
// NOTICE! Understand what this does before running. 
$result = wc_format_hex($hex); 
    

Defined – محل تعریف

/includes/wc-formatting-functions.php

function wc_format_hex( $hex ) { 
 
    $hex = trim( str_replace( '#', '', $hex ) ); 
 
    if ( strlen( $hex ) == 3 ) { 
        $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; 
    } 
 
    return $hex ? '#' . $hex : null; 
} 

versions – نسخه ها

از نسخه : 3.0.2

نسخه فعلی : 3.0.6

دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2

ارسال نظر

جهت استفاده از کد حتما از تگ pre استفاده نمایید .

contact us