gpt4 book ai didi

PHP strstr - 反向方法

转载 作者:可可西里 更新时间:2023-11-01 00:20:24 24 4
gpt4 key购买 nike

我希望获得与 php strstr 命令(当它设置为 true 时)完全相同的结果,但顺序相反。

我知道我可以简单地反转字符串并使用 strstr 然后再次反转它

但我想知道是否有用于该任务的任何内部 php 命令。

<?php

$myString = 'We don\'t need no education';

echo strstr($myString, ' ', true);

/*
* output :
* We
*
* I'm expecting to get :
* education
*
*/

exit;

?>

非常简单!

最佳答案

你有函数 strrchr

$myString = 'We don\'t need no education';

echo strrchr($myString, ' ');
// output : ' education'

echo substr(strrchr($myString, ' '), 1);
// output : 'education'

关于PHP strstr - 反向方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27472202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com