Write a program in PHP to find the occurrence of a word in a string?

devquora
devquora

Posted On: Jun 05, 2021

 

Related Questions

PHP Logical & Programming Interview Questions

Write a program in Php to check whether a number is prime or not?

The program in Php to check whether a number is prime or not is as follows : <?php function primeCheck($number){     if ($number == 1)     return 0;     for ($i =...

PHP Logical & Programming Interview Questions

Write a program to find no of days between two dates in Php?

The program to find no of days between two dates in PHP is as follows: Let the dates are 25-09-2020 and 31-01-2021 <?php   function dateDiffInDays($date1, $date2)  {   &nbs...

PHP Logical & Programming Interview Questions

Write a program to upload a file in PHP?

The program to upload a file in PHP is as follows: <?php $target_dir = "uploads/"; $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]); $uploadOk = 1; $imageFileType = strto...