Single quote vs Double quote in php with examples
Almost all PHP programmers will get confusion on this atleast one time in their development carrier, Single Quote: 1. Values […]
» Read morenext gen Developer
Almost all PHP programmers will get confusion on this atleast one time in their development carrier, Single Quote: 1. Values […]
» Read morePHP Program 1: [php] $str1 = "Java"; $str2 = "JAVA"; if (strcasecmp($str1, $str2) == 0) { echo "Both are Equal"; […]
» Read moreSubstring replacements: Syntax: substr_replace($existing_string,$overwritting string,$int_start,$int_length); Example: substr_replace(‘my dog’,’cat’,3,3); my cat substr_replace(“my\ndog”,”cat”,3,3); my cat […]
» Read moreSubstring: If you want to extract substring from a given string then use the Syntax: substr($string_input,$int_start,$int_length) Example: substr(‘God is love’,7,4); […]
» Read moreProgram: array_substring.php <?php $rainbow = blUe; print $rainbow[2]; ?> Output: Thanks for reading this post……….!!!
» Read more