php integer to string code example

Example 1: integer to string php

return strval($integer);

Example 2: php int to string

$number = 11;
// This
echo strval($number);
// Or This
echo (String) $number;
// Output
// "11"
// "11"

Example 3: convert int to string php

$var = 5;

// Inline variable parsing
echo "I'd like {$var} waffles"; // = "I'd like 5 waffles

// String concatenation 
echo "I'd like ".$var." waffles"; // I'd like 5 waffles

// Explicit cast 
$items = (string)$var; // $items === "5";

// Function call
$items = strval($var); // $items === "5";

Example 4: cast string to int php

$num = "3.14"; 
$int = (int)$num;//string to int
$float = (float)$num;//string to float

Example 5: Convert an Integer Into a String in PHP

phpCopy<?php  
$variable = 10;
$string1 = strval($variable);
echo "The variable is converted to a string and its value is $string1.";  
?>

Example 6: Convert an Integer Into a String in PHP

phpCopy<?php  
$variable = 10;
$string1 = "".$variable;
echo "$string1";  

$string1 = $variable."";
echo "$string1";  

?>

Tags:

Php Example