我想从字符串中提取变量的第一个单词。例如,采用以下输入:
<?php $myvalue = 'Test me more'; ?>
结果输出应该是Test,这是输入的第一个单词。我怎样才能做到这一点?
Test
您可以按如下方式使用explode函数:
$myvalue = 'Test me more'; $arr = explode(' ',trim($myvalue)); echo $arr[0]; // will print Test
另一个例子:
$sentence = 'Hello World this is PHP'; $abbreviation = explode(' ', trim($sentence ))[0]; echo $abbreviation // will print Hello