AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 3.15.150.226   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/chroot/var/www/wp-content/plugins/wp-all-export/helpers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/chroot/var/www/wp-content/plugins/wp-all-export/helpers/pmxe_prepare_price.php
<?php

function pmxe_prepare_price( $price, $disable_prepare_price, $prepare_price_to_woo_format, $convert_decimal_separator ){

    if ( $disable_prepare_price ){
        $price = preg_replace("/[^0-9\.,]/","", $price);
    }
    if ( $convert_decimal_separator and strlen($price) > 3)
    {
        $decimal_sep    = get_option( 'woocommerce_price_decimal_sep', '.' );
        $thousand_sep   = get_option( 'woocommerce_price_thousand_sep', ',' );
        $comma_position = strrpos($price, ",", strlen($price) - 3);
        if ($comma_position !== false)
        {
            $price = str_replace(".", "", $price);
            $comma_position = strrpos($price, ",");
            $price = str_replace(",", "", substr_replace($price, ".", $comma_position, 1));
        }
        else
        {
            $comma_position = strrpos($price, ".", strlen($price) - 3);
            if ($comma_position !== false)
            {
                $price = str_replace(",", "", $price);
            }
            elseif(strlen($price) > 4)
            {
                $comma_position = strrpos($price, ",", strlen($price) - 4);

                if ($comma_position and strlen($price) - $comma_position == 4)
                {
                    $price = str_replace(",", "", $price);
                }
                else
                {
                    $comma_position = strrpos($price, ".", strlen($price) - 4);

                    if ($comma_position and strlen($price) - $comma_position == 4)
                    {
                        $price = str_replace(".", "", $price);
                    }
                }
            }
        }
    }
    if ( $prepare_price_to_woo_format ){
        $price = str_replace(",", ".", $price);
        $price = str_replace(",", ".", str_replace(".", "", preg_replace("%\.([0-9]){1,2}?$%", ",$0", $price)));

        $price = ("" != $price) ? number_format( (double) $price, 2, '.', '' ) : "";
    }
    
    return apply_filters('pmxe_price', $price);
}

Anon7 - 2022
AnonSec Team