查找句子第一个单词的 PHP 程序


代码如下

示例

 在线演示

<?php
   $my_string = 'Hi there, this is a sample statement';
   echo "The first word of the string is ". strtok($my_string, " ");
?>

输出

The first word of the string is Hi

首先定义一个字符串 −

$my_string = 'Hi there, this is a sample statement';

“strtok” 函数是一个内置函数,用于将字符串分割成指定数量的部分。在第一个空格出现之前,需要分割字符串。这个分割字符串的第一部分显示为屏幕上的输出 −

echo "The first word of the string is ". strtok($my_string, " ");

更新日期:17-Aug-2020

645 人次浏览

开启精彩 职业

完成课程获得证书

立即开始
广告