How to prepend a string in PHP
There is no specific function to prepend a string in PHP. But you can use the PHP concatenation operator (.) to prepened a string with another string.
.
Let's take a look at the following example to understand how it basically works:
<?php $a = "Hello"; $b = "World!"; $b = $a . " " . $b; echo $b; // Outputs: Hello World! ?>
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Use the PHP Concatenation Operator
There is no specific function to prepend a string in PHP. But you can use the PHP concatenation operator (
.) to prepened a string with another string.Let's take a look at the following example to understand how it basically works:
need an explanation for this answer? contact us directly to get an explanation for this answer