How to add a Character to String in PHP ?
Last Updated :
16 Jul, 2024
Given two strings, the task is to add a Character to a String in PHP. The character can be added to a string in many ways in this article we will be using eight methods including the Concatenate Method, the String Interpolation Method, the str_pad() Method, Concatenation Assignment (.=) Operator, String Conversion, The sprintf Function or printf Function, The strcat Function, and Using Array Join.
For Example, Consider the below example where there are two strings:
Input
string1 = "Welcome to" ,
string2 = "GeeksforGeeks"
Output
Welcome to GeeksforGeeks
Using Concatenate Method
The concatenation operator (.) of PHP offers to concatenate strings. Here we will be using the (.) sign to add a Character to the String. The example uses two individual strings to add and make a new string.
Example: The below method illustrates how to add a Character to a String in PHP with the help of the concatenate method.
PHP
<?php
$oldstring = "Welcome to";
$newstring = " GeeksforGeeks";
// Concatenate the characters to the string
$resultstring = $oldstring . $newstring;
// Displaying the output
echo $resultstring;
?>
OutputWelcome to GeeksforGeeks
Using String Interpolation Method
The method is available in PHP 7.0 and later versions. The variables can be directly embedded in the resulting string without using the concatenation operator. With the help of the string interpolation method, we can add a Character to a String.
Example: The below method illustrates how to add a Character to a String in PHP with the help of the string interpolation method.
PHP
<?php
$oldstring = "Hello";
$newstring = " Geeks!! ";
// Using String Interpolation Method
$resultstring = "$oldstring$newstring";
// Displaying the result
echo $resultstring;
?>
Using str_pad() Method
The str-pad() method is used to add a character to either the beginning, the end, or both sides of the string. The string str_pad method takes four parameters including an old string, length, a new string that would be added pad_string, and pad type for defining side (start, end, or both).
Example: The below method illustrates how to add a Character to a String in PHP with the help of the str_pad() method.
PHP
<?php
$oldstr = "Hello, Welcome to";
echo str_pad($oldstr, 31, " GeeksforGeeks", STR_PAD_RIGHT);
?>
OutputHello, Welcome to GeeksforGeeks
Using the Concatenation Assignment (.=) Operator
The .= operator in PHP is the concatenation assignment operator. It is used to concatenate the right operand to the left operand and assign the result to the left operand.
Example: The below method illustrates how to add a Character to a String in PHP with the help of the Concatenation Assignment (.=) Operator.
PHP
<?php
$oldstr = "GeeksforGeeks";
$oldstr .= "!!";
echo $oldstr;
?>
Using the String Conversion
String conversion involves using the concatenation operator (.) to join two strings. The example shows $newstr = $oldstr. " GeeksforGeeks"; concatenates the original string $oldstr with the additional string " GeeksforGeeks".
Example: The below method illustrates how to add a Character to a String in PHP with the help of String Conversion.
PHP
<?php
$oldstr = "Hello";
$newstr = $oldstr . " GeeksforGeeks";
echo $newstr;
?>
OutputHello GeeksforGeeks
Using the sprintf Function or printf Function
The sprintf function returns the formatted string, while printf directly outputs the formatted string. The sprintf and printf functions are used for formatted string output in PHP.
Example: The below method illustrates how to add a Character to a String in PHP with the help of sprintf Function or printf Function.
PHP
<?php
$oldstr = "Welcome to";
$newstr = sprintf("%s GeeksforGeeks", $oldstr);
echo $newstr;
?>
OutputWelcome to GeeksforGeeks
Using the strcat Function
The strcat is not a native function in PHP, the equivalent operation can be achieved using the concatenation operator (.). The example shows $newstr = $oldstr. " GeeksforGeeks"; defines the concatenation of two strings.
Example: The below method illustrates how to add a Character to a String in PHP with the help of strcat Function.
PHP
<?php
$oldstr = "Hello,";
$newstr = $oldstr . " GeeksforGeeks !!";
echo $newstr;
?>
OutputHello, GeeksforGeeks !!
Using Array Join
The implode function is used to join array elements into a string. The example shows $newstr = implode("", $parts); joins the array $parts into a single string with an empty string as the glue between elements.
Example: The below method illustrates how to add a Character to a String in PHP with the help of Array Join
PHP
<?php
$oldstr = "Hello, Welcome to";
$p = [$oldstr, " GeeksforGeeks"];
$newstr = implode("", $p);
echo $newstr;
?>
OutputHello, Welcome to GeeksforGeeks
Using implode() Function
The implode() function in PHP joins array elements into a string, optionally inserting a specified separator between each element.
Example: This method leverages arrays to manage and concatenate strings, offering flexibility in how strings are manipulated and joined together in PHP.
PHP
<?php
// Initial strings
$string1 = "Welcome to";
$string2 = " GeeksforGeeks";
// Create an array of strings
$parts = [$string1, $string2];
// Join array elements into a single string
$newString = implode(' ', $parts);
echo $newString;
?>
OutputWelcome to GeeksforGeeks
Using join() Function
Another method to add a character to a string in PHP involves using the join() function, which is an alias of implode(). This function allows you to join array elements into a string, with a specified separator if needed. This approach can be particularly useful when you have a string split into an array and you want to add a character or string between the elements.
Example: The following example demonstrates how to use the join() function to add a character to a string in PHP.
PHP
<?php
$string1 = "Welcome to";
$string2 = "GeeksforGeeks";
$parts = str_split($string1);
$parts[] = " " . $string2;
$newString = join("", $parts);
echo $newString;
?>
OutputWelcome to GeeksforGeeks
Similar Reads
How to get string between two characters in PHP ?
A string is a sequence of characters stored in the incremental form in PHP. A set of characters, one or many can lie between any two chosen indexes of the string. The text between two characters in PHP can be extracted using the following two methods : Table of ContentUsing substr() Method: Using fo
4 min read
How to get the last character of a string in PHP ?
In this article, we will find the last character of a string in PHP. The last character can be found using the following methods.Using array() Method: In this method, we will find the length of the string, then print the value of (length-1). For example, if the string is "Akshit" Its length is 6, in
2 min read
How to read each character of a string in PHP ?
A string is a sequence of characters. It may contain integers or even special symbols. Every character in a string is stored at a unique position represented by a unique index value. Here are some approaches to read each character of a string in PHPTable of ContentUsing str_split() method - The str_
4 min read
How to convert String to Float in PHP ?
Converting a string to a float in PHP is a common requirement when handling numeric data stored in string format. This conversion allows the numeric string to be used in calculations or comparisons, ensuring accurate manipulation of data within the program.There are many methods to convert a string
3 min read
How to remove the first character of string in PHP?
Remove the very first character of a given string in PHP Examples: Input : GeeksforgeeksOutput : eeksforgeeksInput :, Hello geek!Output : Hello geek!Explanation:In PHP to remove characters from the beginning we can use ltrim but in that, we have to define what we want to remove from a string i.e. re
3 min read
How to get the position of character in a string in PHP ?
In this article, we will get the position of the character in the given string in PHP. String is a set of characters. We will get the position of the character in a string by using strpos() function. Syntax: strpos(string, character, start_pos) Parameters: string (mandatory): This parameter refers t
2 min read
How to replace multiple characters in a string in PHP ?
A string is a sequence of characters enclosed within single or double quotes. A string can also be looped through and modifications can be made to replace a particular sequence of characters in it. In this article, we will see how to replace multiple characters in a string in PHP.Using the str_repla
3 min read
How to check for empty string in PHP ?
In this article, we will see how to check for empty string in PHP. String is a set of characters. A string is said to be empty, if it contains no characters. We can use empty() function to check whether a string is empty or not.here we have some common approachesTable of ContentUsing empty() functio
4 min read
How to check if a String contains a Specific Character in PHP ?
In PHP, determining whether a string contains a specific character is a common task. Whether you're validating user input, parsing data, or performing text processing, PHP provides several methods to check for the presence of a particular character within a string efficiently. Here are some common a
2 min read
How to Append Data to a File in PHP?
Appending data to a file is a common operation in PHP when you want to add new information without overwriting the existing content. This can be particularly useful for logging, saving user activity, or adding records incrementally. We will explore different approaches to appending data to a file in
2 min read