Maison > Article > développement back-end > Comment convertir des variables en chaîne en php
Comment convertir une variable en chaîne en PHP : créez d'abord un exemple de fichier PHP ; puis utilisez la méthode "function variable_to_string($variable){...}" pour convertir une variable en chaîne.
L'environnement d'exploitation de ce tutoriel : système Windows 10, php5.6 Cet article est applicable à toutes les marques d'ordinateurs.
Recommandé : "Tutoriel vidéo PHP"
php Convertir une variable en chaîne
Le code est le suivant :
/** * 将一个变量转为字符串 * float使用var_export得到的字符串不准确 * resource使用var_export得到的是null * @param $variable * @return string */ function variable_to_string($variable) { return is_float($variable) ? (string)$variable : ( is_resource($variable) ? "'resource of type'" : var_export($variable, true) ); } // int $a = 4; var_dump(variable_to_string($a)); /** * 输出:string(1) "4" */ // float $a = 100.4; var_dump(variable_to_string($a)); /** * 输出:string(5) "100.4" */ // string $a = 'abcdefg'; var_dump(variable_to_string($a)); /** * 输出:string(9) "'abcdefg'" */ // array $a = ['a' => 'a', 'b' => 'b']; var_dump(variable_to_string($a)); /** * 输出:string(37) "array ( * 'a' => 'a', * 'b' => 'b', * )" */ // object $a = new stdClass(); $a->a = 'a'; $a->b = 'b'; var_dump(variable_to_string($a)); /** * 输出:string(61) "stdClass::__set_state(array( * 'a' => 'a', * 'b' => 'b', * ))" */ // bool $a = false; var_dump(variable_to_string($a)); /** * 输出:string(5) "false" */ // null $a = null; var_dump(variable_to_string($a)); /** * 输出:string(4) "NULL" */ // resource $a = fopen('./test.log', 'wb+'); var_dump(variable_to_string($a)); /** * 输出:string(18) "'resource of type'" */
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!