PHP settype()

Jmnote (토론 | 기여)님의 2016년 3월 30일 (수) 11:49 판 (새 문서: ==개요== ;PHP settype() <source lang='php'> $foo = '5bar'; settype( $foo, 'integer' ); var_dump( $foo ); # int(5) $bar = true; settype( $bar, 'string' ); var_dump( $bar ); # strin...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

PHP settype()
$foo = '5bar';
settype( $foo, 'integer' );
var_dump( $foo );
# int(5)

$bar = true;
settype( $bar, 'string' );
var_dump( $bar );
# string(1) "1"

2 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}