programing

경고: number_format()은 파라미터 1이 이중으로 지정되어야 하며 문자열이 지정되어야 합니다.

i4 2023. 3. 12. 10:24
반응형

경고: number_format()은 파라미터 1이 이중으로 지정되어야 하며 문자열이 지정되어야 합니다.

내 페이지 슬라이더에 다음 오류가 표시됨:

경고: number_format()은 파라미터 1이 이중이며 /home/globalar/public_html/wp-content/temes/automotive_s1/includes/slider에 문자열이 지정되어야 합니다.30행의 php

<?php

    if $str = floatval($str); ($post->post_type == "gtcd") {
        the_title();
    if (isset( $fields['price'])) {
        echo ' | <span class="price_slider">'.'  '.$symbols['currency']; 
        echo number_format($fields['price']).'</span> ';
    } else { 
        echo '';
}
$fields['price']='8, 9858';
echo number_format((float)$fields['price']);

사용하다(float)올바르게 해석하다

안에 어떤 값이 있는지 확인해야 합니다.$fields['price'].

다음 작업을 수행합니다.

var_dump($fields['price']);

공간이 좀 있을 수도 있고,대신.

define other variabel로 수정합니다.

$tot=$row['total'];
$total=number_format($tot,2);

$tot2=$tot*1;
$vat=number_format($tot2*10/100,2);

어쩌면 도움이 될지도 몰라

언급URL : https://stackoverflow.com/questions/24906861/warning-number-format-expects-parameter-1-to-be-double-string-given

반응형