Posted in

Reverse string

php in Reverse string ?

Reverse string

php strrev () फंक्शन स्ट्रिंग उलट देता  है।
<?php
echo strrev(“Android code”);
?>
 
 
 Output
 
Android code
 
 

 

php in Str_replace program

 
php str_replace().
फंक्शन कुछ वर्णों को स्ट्रिंग में कुछ अन्य वर्णों से बदल देता है।
 
<?php
echo str_replace(“text”, code play”, “php and MySQL test”);
?>
 
Output
 
PHP and MySQL play

Leave a Reply

Your email address will not be published. Required fields are marked *