“Convertir une chaîne en un nombre en php” Réponses codées

Convertir une chaîne en un nombre en php

phpCopy<?php  
$variable = "53";
$integer = intval($variable);
echo "The variable $variable has converted to a number and its value is $integer.";  
echo "\n";

$variable = "25.3";
$float = floatval($variable);
echo "The variable $variable has converted to a number and its value is $float.";  
?>
CodeGuruDev

Convertir une chaîne en un nombre en php

phpCopy<?php  
$variable = "abc";
$integer = (int)$variable;
echo "The variable has converted to a number and its value is $integer.";  
?>
CodeGuruDev

Convertir une chaîne en un nombre en php

phpCopy<?php  
$variable = "10";
$integer = (int)$variable;
echo "The variable $variable has converted to a number and its value is $integer.";  
echo "\n";

$variable = "8.1";
$float = (float)$variable;
echo "The variable $variable has converted to a number and its value is $float.";  
?>
CodeGuruDev

Convertir une chaîne en un nombre en php

phpCopy<?php  
$variable = "45";
settype($variable, "integer");
echo "The variable has converted to a number and its value is $variable.";  
?>
CodeGuruDev

Convertir une chaîne en un nombre en php

phpCopy$variableName = (int)$stringName
$variableName = (float)$stringName
CodeGuruDev

Convertir une chaîne en un nombre en php

phpCopyintval( $StringName );  
CodeGuruDev

Convertir une chaîne en un nombre en php

phpCopysettype($variableName, "typeName");
CodeGuruDev

Réponses similaires à “Convertir une chaîne en un nombre en php”

Questions similaires à “Convertir une chaîne en un nombre en php”

Plus de réponses similaires à “Convertir une chaîne en un nombre en php” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code