Q:

Write a PHP script to remove part of a string

0

Write a PHP script to remove part of a string.

Original String : 'The quick brown fox jumps over the lazy dog'
Remove 'fox' from the above string.

Pictorial Presentation:

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

<?php
$my_str = 'The quick brown fox jumps over the lazy dog';
echo str_replace("fox", " ", $my_str)."\n";
?>

Sample Output:

The quick brown   jumps over the lazy dog

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now