(PHP 4, PHP 5, PHP 7)
settype — ���ñ���������
var
Ҫת���ı�����
type
type
�Ŀ���ֵΪ��
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Example #1 settype() ʾ��
<?php
$foo = "5bar"; // string
$bar = true; // boolean
settype($foo, "integer"); // $foo ������ 5 (integer)
settype($bar, "string"); // $bar ������ "1" (string)
?>
Note:
Maximum value for "int" is
PHP_INT_MAX
.