/ Published in: PHP
Hello World out there Hello World Hello World Hello WorldAgain
The quick brown fox jumped over the lazy dog. Lowercase: the quick brown fox jumped over the lazy dog. Uppercase: THE QUICK BROWN FOX JUMPED OVER THE LAZY DOG. Uppercase words: The Quick Brown Fox Jumped Over The Lazy Dog. Length: 45 Trim: The quick brown foxjumped over the lazy dog. Replace by string: The super-fast brown fox jumped over the lazy dog. Repeat: The quick brown fox jumped over the lazy dog.The quick brown fox jumped over the lazy dog. Make substring: uick brown Find position: 10 Find character: zy dog.
Expand |
Embed | Plain Text
<?php $var1 = "out there"; $var2 = "Hello World $var1"; echo $var2; ?> <br /> <?php echo "Hello World"; echo "<br />"; $my_variable = "Hello World"; echo $my_variable; echo "<br />"; ?> <br /><br /> <?php $firstString = "The quick brown fox"; $secondString = " jumped over the lazy dog."; $thirdString = $firstString; $thirdString .= $secondString; echo $thirdString; ?> <br /> ?><br />
You need to login to post a comment.
