首頁  >  文章  >  後端開發  >  PHP如何使用strval()函數?

PHP如何使用strval()函數?

醉折花枝作酒筹
醉折花枝作酒筹轉載
2021-06-04 17:43:552198瀏覽

本篇文章要為大家介紹PHP使用strval()函數的方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有幫助。

PHP如何使用strval()函數?

strval()函數是PHP中的內建函數, 用於將任何標量值(字串, 整數或雙精度)轉換為字串。我們不能在陣列或物件上使用strval(), 如果應用了該函數, 則此函數僅傳回要轉換的值的類型名稱。

語法:

strval( $variable )

參數:此函數接受單一參數$變數。此參數表示我們要轉換為字串的值

傳回值:此函數傳回字串。該字串是透過類型轉換作為參數傳遞給它的變數的值產生的。

下面的程式說明了strval()函數。

程式1:

<?php
  
$var_name = 32.360;
  
// prints the value of above variable 
// as a string
echo strval ( $var_name );
  
?>

輸出如下:

32.36

程式2:

<?php
  
class lsbin
{
     public function __toString()
     {   
         // returns the class name 
         return __CLASS__ ;
     }
}
  
// prints the name of above class as
// a string
echo strval ( new lsbin);
  
?>

輸出如下:

lsbin

程式3:

<?php
// Program to illustrate the strval() function
// when an array is passed as parameter
  
// Input array
$arr = array (1, 2, 3, 4, 5);
  
// This will print only the type of value
// being converted i.e. &#39;Array&#39;
echo strval ( $arr );
  
?>

推薦學習:php影片教學

以上是PHP如何使用strval()函數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除