<?php
//设置错误级别。E_ALL但是除了NOTICE
error_reporting(E_ALL&~E_NOTICE);
//通过系统函数完成临时转换
$var = '4king';
$res =intval($var);
var_dump($res);
/*
*
* PHP Fatal(致命错误) error: Call to undefined function realval() in I:\WWW\PHPjicurumen\type-4.php on line 14
*
* 调用了未定义的函数realval()
*/
var_dump(floatval($var),doubleval($var));
var_dump(boolval($var));
$var=true;
var_dump(strval($var));
?>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!