agregar agregar
Utilizando (“.=”): Se utiliza el
Sintaxis :
$x .= $y
Ejemplo :
PHP
<?php // PHP program to append a string // function to append a string function append_string ($str1, $str2) { // Using Concatenation assignment // operator (.=) $str1 .=$str2; // Returning the result return $str1; } // Given string $str1 = "Geeks"; $str2 = "for"; $str3 = "Geeks"; // function calling $str = append_string ($str1, $str2); $str = append_string ($str, $str3); // Printing the result echo $str; ?>
Producción
GeeksforGeeks
Uso del operador de concatenación («.»): El operador de concatenación se usa para agregar una string str1 con otra string str2 mediante la concatenación de str1 y str2.
Sintaxis:
$x . $y
Ejemplo :
PHP
<?php // PHP program to append a string // Function to append a string function append_string ($str1, $str2){ // Using Concatenation assignment // operator (.) $str = $str1 . $str2; // Returning the result return $str; } // Given string $str1 = "Geeks"; $str2 = "for"; $str3 = "Geeks"; // Function calling $str = append_string ($str1, $str2); $str = append_string ($str, $str3); // Printing the result echo $str; ?>
Producción
GeeksforGeeks
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA