strval()函数是PHP中的内置函数,用于将任何标量值(字符串,整数或双精度)转换为字符串。我们不能在数组或对象上使用strval(),如果应用,则此函数仅返回要转换的值的类型名称。
用法:
strval( $variable )
参数:此函数接受单个参数$variable。此参数表示我们要转换为字符串的值
Return value:此函数返回一个字符串。通过类型转换作为参数传递给它的变量的值来生成此字符串。
以下示例程序旨在说明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 geeksforgeeks
{
public function __toString()
{
// returns the class name
return __CLASS__;
}
}
// prints the name of above class as
// a string
echo strval(new geeksforgeeks);
?>
输出:
geeksforgeeks
程序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/function.strval.php
相关用法
- p5.js hex()用法及代码示例
- CSS url()用法及代码示例
- PHP pi( )用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP pow( )用法及代码示例
- p5.js box()用法及代码示例
- d3.js d3.lab()用法及代码示例
- p5.js value()用法及代码示例
- d3.js d3.rgb()用法及代码示例
- CSS rgb()用法及代码示例
- p5.js nf()用法及代码示例
- PHP each()用法及代码示例
注:本文由纯净天空筛选整理自 PHP | strval() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。