Home  >  Article  >  Backend Development  >  这句话中的这里是函数吗

这句话中的这里是函数吗

WBOY
WBOYOriginal
2016-06-23 13:44:27833browse

$page=$_REQUEST['page']? (int)$_REQUEST['page']:1
这句话中的(int)是什么意思呢,从来没见过这么写法,一个括号里面包一个玩意,这到底是个啥,肯定不是函数了。


回复讨论(解决方案)

强制类型转换,是从 C 语言继承过来的语法元素

php 会根据上下文自动改变数据类型,所以这个 (int) 是没必要的


在php中你也可以用intval strval floatval...等来转换数据类型

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn