I am a self starter and also a quick learner. I'm an active proponent of Modern Software development Languages.I am highly motivated, with ambitions to work for a company whose high standard match my own. I am conscientious and experienced in all aspects of software development.
Saturday, 19 September 2015
str_replace in php
Replace characters from a variable using str_replace.
<?php
$Article = "This is my first paragraph.";
echo str_replace('paragraph' ,'Article', $Article);
?>
//: Output
This is my first Article.
No comments:
Post a Comment