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. 'Array' echo strval ( $arr ); ?>
登入後複製
推薦學習:php影片教學