toBool toBool
인수 유형에 따라 인수 값을 부울 값으로 변환합니다.
- From string: 문자열 값을 부울로 변환하고 문자열 값이 "true"이면 "true"를 반환하고 그렇지 않으면 false를 반환합니다
- 숫자에서: 숫자 값이 0이 아니면 true이고, 그렇지 않으면 false입니다
카테고리
전환
함수 구문
toBool(<parameter>)
매개 변수
- decimal
- 부울
- 문자열
- 정수
서명 및 반환된 유형
toBool(<decimal>)
toBool(<boolean>)
toBool(<string>)
toBool(<integer>)
부울 반환.
예시
toBool("true")
toBool(1)
true를 반환합니다.
toBool("this is not a boolean")
false를 반환합니다.
recommendation-more-help
4f4a00c1-77c9-4eee-84df-bbe6206c3ab9