gpt4 book ai didi

php - 在txt中每行选择1个随机关键字

转载 作者:行者123 更新时间:2023-12-04 05:41:33 24 4
gpt4 key购买 nike

$kw=explode("\n",file_get_contents("keyword.txt"));
shuffle($kw);

keyword.txt 只是行中的关键字,例如:
keyword1
keyword2
keyword3
keyword4
keyword5
keyword6
keyword7
keyword8
keyword9

最佳答案

要从该文件中选择一个随机关键字:

<?php
//$keywords = file('keyword.txt'); OR
$keywords = explode("\n", file_get_contents('keyword.txt'));
echo $keywords[ array_rand($keywords) ];
?>

关于php - 在txt中每行选择1个随机关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11218179/

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