![]() |
VOOZH | about |
We have given two strings and the task is to prepend a string str1 with another string str2 in PHP. There is no specific function to prepend a string in PHP. To do this task, we have the following operators in PHP:
Below are the methods to prepend a string in PHP
Table of Content
The Concatenation operator is used to prepend a string str1 with another string str2 by concatenation of str1 and str2.
Syntax:
$x . $yExample :
GeeksforgeeksExample
The Concatenation assignment operator is used to prepend a string str1 with another string str2 by appending the str2 to the str1.
Syntax:
$x .= $yExample :
GeeksforgeeksExample
The sprintf() function formats a string according to a specified format. By specifying a format that includes both strings in the desired order, you can prepend one string with another.
Example
Hello, world!