使用 PHP 进行内容旋转?
有人可以帮我吗?假设我有 此文本 或存储在变量中的较小部分,我如何随机化'{}'?
例如,第一个是“{important|essential|crucial|ritic|vital|significant}”,如何让PHP随机选择其中一个单词然后回显它?谢谢你帮助我。 :)
Can anyone please help me? Say if I had this text or a smaller section stored in a variable, how can I randomise the words in the '{ }' ?
For example, the first one is "{important|essential|crucial|critical|vital|significant}" how can I make PHP choose one of those words randomly and then echo it? Thanks for helping me. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
http://webarto.com/62/random-sentence-spinning-function
应用于您的文本文件... http://ideone.com/rkuf6
http://webarto.com/62/random-sentence-spinning-function
Applied on your text file... http://ideone.com/rkuf6
trim()
explode()
在|
上爆炸结果字符串array_rand ()
代表您在上一步中获得的数组trim()
|
usingexplode()
array_rand()
for the array you had in last step不适用于嵌套({a|x {b|c} y|z})!
Will not work with nested({a|x {b|c} y|z})!