Here is simple Exampple to get Longest Word from a Sentence in PHP. |
Example:
PHP
<?php
$string = "Where did the big Elephant go?";
$words = explode(' ', $string);
$longestWordLength = 0;
$longestWord = '';
foreach ($words as $word) {
if (strlen($word) > $longestWordLength) {
$longestWordLength = strlen($word);
$longestWord = $word;
}
}
echo $longestWord;
// Outputs: "Elephant"
?>
How to check if a string contain multiple specific words | PHP String Tutorial |
How to extract words from Sentence in PHP | PHP String Tutorial |
How to check if string is_numeric() Function in PHP | PHP String Tutorial |
How to get only text from HTML Source Code by PHP | PHP String Tutorial |
How to get first 3 words from a sentence by PHP | PHP String Tutorial |
How to work if empty value does not else | PHP String Tutorial |
How to remove first Five Line from a TXT File in PHP | PHP String Tutorial |
How to get Longest Word from a Sentence in PHP | PHP String Tutorial |
How to remove first character from string php | PHP String Tutorial |
How to count if Number is below than 10 sum | PHP String Tutorial |
How to get back page link | PHP String Tutorial |
How to extract Longest Word from a Sentence in PHP | PHP String Tutorial |
Read Full:: | PHP String Tutorial |
Category: | Web Tutorial |
Sub Category: | PHP String Tutorial |
Uploaded: | 2 months ago |
Uploaded by: | Admin |
Views: | 249 |
Tested on: | PHP 7 |
Ref on: | View |