Search
 
SCRIPT & CODE EXAMPLE
 

PHP

PHP strrev — Reverse a string

<?php
echo strrev("Hello world!"); // outputs "!dlrow olleH"
?>
Comment

how to reverse a string in php

#Text must be in double quotes in brackets

echo strrev("Text goes here");
Comment

Reverse String PHP

<?php

$a = “abcdeg”;

echo strrev($a);

?>
Comment

how to reverse a string in php

use strrev(); function
Comment

php reverse string

strrev("web learn smart");
Comment

PREVIOUS NEXT
Code Example
Php :: php sort array by key 
Php :: How do I get PHP errors to display 
Php :: laravel bootstrap nav active 
Php :: laravel table in model 
Php :: run composer with different php version 
Php :: php iterate array keys 
Php :: laravel maintenance mode 
Php :: convert a php array into a javascript array 
Php :: remove first character from string laravel 
Php :: laravel get file contents from storage 
Php :: how to add title to wordpress php 
Php :: phpunit repeat 
Php :: convert object to array in php 
Php :: if text contains word then in php 
Php :: php get array key by value multidimensional 
Php :: where laravel function 
Php :: sortbydesc on a collection laravel 
Php :: wherein laravel 
Php :: wc order details 
Php :: how to truncate the given string to the specified length in blade.php 
Php :: laravel run a specific migration 
Php :: nl2br php 
Php :: base url in php 
Php :: foreignid in laravel 
Php :: laravel join 
Php :: laravel where like 
Php :: how to redirect to another page from laravel blade 
Php :: convert float to integer laravel 
Php :: osx php 
Php :: magento 2 print php error 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =