关于后端:PHP如何使用strval函数用法和代码示例

52次阅读

共计 892 个字符,预计需要花费 3 分钟才能阅读完成。

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);
  
?>

参考:http://php.net/manual/en/func…

更多 PHP 开发相干内容请参考:lsbin – IT 开发技术:https://www.lsbin.com/

PHP 相干内容举荐:

  • PHP 中将 PDF 文档转换为预览图像:https://www.lsbin.com/2545.html
  • PHP 数组操作:https://www.lsbin.com/2811.html
  • PHP 在浏览器关上 PDF 文件:https://www.lsbin.com/523.html

正文完
 0