PHP ne nécessite pas (ni ne prend en charge) de définitions de type explicites dans les définitions de variables ; le type de variable est déterminé en fonction du contexte dans lequel la variable est utilisée.
php peut utiliser (String) pour forcer une variable dans une chaîne. Une chaîne de caractères est composée d'une série de caractères, où chaque caractère est équivalent à One. octet. (Apprentissage recommandé : Tutoriel vidéo PHP)
/** * 将一个变量转为字符串 * 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!