如何确定计数并从结果中编辑随机数?
这是我当前的 php 脚本。
$mystr = 'Hello world. The world is nice';
substr_count($mystr, 'world'); // count=2;
$mytext = preg_replace('/\b('.$mystr.')\b/i', '<b>$1</b>', $mytext);
我想随机将其中一个单词加粗。 有什么聪明的办法吗? 提前谢谢,史蒂文
this is my current php-script.
$mystr = 'Hello world. The world is nice';
substr_count($mystr, 'world'); // count=2;
$mytext = preg_replace('/\b('.$mystr.')\b/i', '<b>$1</b>', $mytext);
I want to have randomly one of the word in bold.
Is there any smart way?
Thx in advanced, Steven
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否想将某个特定单词(即
world
)设为粗体?如果是,一种方法可能是:用作:
参考:
str_word_count
,array_intersect
,array_rand
,substr_replace
观看演示。
Are you trying to make a specific word, i.e.
world
bold? If yes, one way could be:used as:
Reference:
str_word_count
,array_intersect
,array_rand
,substr_replace
Watch a DEMO.