반응형
경고: 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
반응형
'programing' 카테고리의 다른 글
텍스트를 -90도 회전하고 div와 수직으로 정렬합니다. (0) | 2023.03.12 |
---|---|
Wordpress에서 HTTPS를 비활성화하고 HTTPS를 HTTP로 리디렉션하려면 어떻게 해야 합니까? (0) | 2023.03.12 |
사용자 지정 Angular 지시어를 통해 템플릿을 조건부로 적용하는 방법은 무엇입니까? (0) | 2023.03.07 |
AngularJS에서 동적 모델 이름을 설정하려면 어떻게 해야 합니까? (0) | 2023.03.07 |
Jquery Ajax 오류 콜백 (0) | 2023.03.07 |