PHP 中可用于输出变量类型的语句为:使用 gettype() 函数。
PHP 中输出变量类型的语句
以下 PHP 语句可以输出变量类型:
<code class="php">gettype()</code>
使用 gettype() 函数
gettype() 函数返回一个字符串,表示变量的类型。该字符串包含以下类型之一:
示例
以下示例演示如何使用 gettype() 函数输出变量类型:
<code class="php">$x = 10; $y = "Hello"; $z = true; echo "Type of \$x: " . gettype($x) . "<br>"; echo "Type of \$y: " . gettype($y) . "<br>"; echo "Type of \$z: " . gettype($z) . "<br>";</code>
输出:
<code>Type of $x: integer<br> Type of $y: string<br> Type of $z: boolean<br></code>
以上是php中哪個語句可以輸出變數類型的詳細內容。更多資訊請關注PHP中文網其他相關文章!