當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Integer轉String用法及代碼示例


PHP strval() 函數用於將整數轉換為 PHP 中的字符串。還有許多其他方法可以將整數轉換為字符串。

在本文中,我們將學習許多方法。

方法:

  • 使用 strval() 函數。
  • 使用內聯變量解析。
  • 使用顯式轉換。

方法一:使用strval()函數。

注意:strval() 函數是 PHP 中的一個內置函數,用於將任何標量值(字符串、整數或雙精度)轉換為字符串。我們不能在數組或對象上使用 strval(),如果應用,則此函數僅返回正在轉換的值的類型名稱。



用法:

strval( $variable ) 

返回值:該函數返回一個字符串。該字符串是通過對作為參數傳遞給它的變量的值進行類型轉換而生成的。

例:

PHP


<?php
    
$var_name = 2;
  
// converts integer into string
$str =  strval($var_name);
  
// prints the value of above variable as a string
echo "Welcome $str GeeksforGeeks";
  
?>
輸出
Welcome 2 GeeksforGeeks

方法二:使用內聯變量解析。

注意:在字符串中使用 Integer 時,首先將 Integer 轉換為字符串,然後打印為字符串。

用法:

$integer = 2;
echo "$integer";

例:



PHP


<?php
    
$var_name = 2;
  
  
// prints the value of above variable
// as a string
echo "Welcome $var_name GeeksforGeeks";
  
?>
輸出
Welcome 2 GeeksforGeeks

方法3:使用顯式轉換。

注意:顯式轉換是數據類型的顯式轉換,因為用戶顯式定義了他想要轉換的數據類型。我們將整數轉換為字符串。

用法:

$str = (string)$var_name

例:

PHP


<?php
    
$var_name = 2;
  
//Typecasting Integer into string
$str = (string)$var_name;
  
// prints the value of above variable as a string
echo "Welcome $str GeeksforGeeks";
  
?>
輸出
Welcome 2 GeeksforGeeks




相關用法


注:本文由純淨天空篩選整理自aksrathod07大神的英文原創作品 How to convert an Integer Into a String in PHP ?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。