“Convertir en chaîne PHP” Réponses codées

entier à chaîner PHP

return strval($integer);
Awful Anaconda

php int à la chaîne

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

php à la chaîne

$number = 10;
// To convert this number to a string:
$numberString = (string)$number;
Coding Random Things

php converti en chaîne

<?php
class StrValTest
{
    public function __toString()
    {
        return __CLASS__;
    }
}

// Prints 'StrValTest'
echo strval(new StrValTest);
?>
Binary Killer

Objet PHP à String

__toString() & {$this->name}
Ankur

Convertir en chaîne PHP

echo "'$animal'";
Majhi Bhai

Réponses similaires à “Convertir en chaîne PHP”

Questions similaires à “Convertir en chaîne PHP”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code