
- PHP 7 Tutorial
- PHP 7 - Home
- PHP 7 - Introduction
- PHP 7 - Performance
- PHP 7 - Environment Setup
- PHP 7 - Scalar Type Declarations
- PHP 7 - Return Type Declarations
- PHP 7 - Null Coalescing Operator
- PHP 7 - Spaceship Operator
- PHP 7 - Constant Arrays
- PHP 7 - Anonymous Classes
- PHP 7 - Closure::call()
- PHP 7 - Filtered unserialize()
- PHP 7 - IntlChar
- PHP 7 - CSPRNG
- PHP 7 - Expectations
- PHP 7 - use Statement
- PHP 7 - Error Handling
- PHP 7 - Integer Division
- PHP 7 - Session Options
- PHP 7 - Deprecated Features
- PHP 7 - Removed Extensions & SAPIs
- PHP 7 Useful Resources
- PHP 7 - Quick Guide
- PHP 7 - Useful Resources
- PHP 7 - Discussion
PHP program to find the first word of a sentence
To find the first word of a sentence, the PHP code is as follows −
Example
<?php $my_string = 'Hi there, this is a sample statement'; echo "The first word of the string is ". strtok($my_string, " "); ?>
Output
The first word of the string is Hi
A string is defined at first −
$my_string = 'Hi there, this is a sample statement';
The ‘strtok’ function is an in-built function that is used to split a string into specified number of parts. Before the first space occurs, the string needs to be split. This split string’s first part is displayed as the output on the screen −
echo "The first word of the string is ". strtok($my_string, " ");
- Related Articles
- PHP program to replace a word with a different symbol in a sentence
- Java program to reverse each word in a sentence
- Python program to reverse each word in a sentence?
- C++ program for length of the longest word in a sentence
- Python Program to replace a word with asterisks in a sentence
- Java Program to replace a word with asterisks in a sentence
- Python program to remove all duplicates word from a given sentence.
- PHP program to find the length of the last word in the string
- Java program to count the characters in each word in a given sentence
- Write a C program to calculate the average word length of a sentence using while loop
- Print longest palindrome word in a sentence in C Program
- Java Program to convert first character uppercase in a sentence
- C Program to convert first character uppercase in a sentence
- C# Program to convert first character uppercase in a sentence
- Java program to swap first and last characters of words in a sentence

Advertisements