Home > Article > Backend Development > How to reverse word string in php
php method to reverse word string: 1. Create a new php file; 2. Save the English word string in the "$str" variable; 3. Use the explode function to split the string by spaces is an array; 4. Use the array_reverse function to return the array from the previous step; 5. Use the implode function to connect the reversed array into a string by spaces, and then use echo to output the result.
The operating environment of this tutorial: Windows 10 system, PHP version 8.1, DELL G3 computer
How to reverse word string in php ?
php reverse string by word
Create a new php file named test.php to explain how php reverses string by word .
In the test.php file, save the English word string in the $str variable.
In the test.php file, use the explode() function to split the string into an array by spaces.
In the test.php file, use the array_reverse() function to return the array from the previous step.
In the test.php file, use implode() to connect the reversed array into a string by spaces, and then use echo to output the result.
Open the test.php file in the browser to view the results.
Recommended study: "PHP Video Tutorial"
The above is the detailed content of How to reverse word string in php. For more information, please follow other related articles on the PHP Chinese website!