gpt4 book ai didi

php - 从 TXT 文件中提取随机行作为字符串

转载 作者:行者123 更新时间:2023-12-02 03:26:25 24 4
gpt4 key购买 nike

我目前正在使用下面的代码尝试从 random.txt 读取随机行并将其作为 $data 传递,但它返回为空。每个字符串都有自己的行,我在这里遗漏了什么吗?这不应该起作用吗?如果不是,我如何从文本文件中获取随机行并将其用作我的 $data 字符串?

$f_contents = file("random.txt");
$line = $f_contents[array_rand($f_contents)];
$data = $line;

已解决 - CHMOD 错误我以为我已经仔细检查过了,很抱歉提出问题。

最佳答案

您的代码看起来是正确的,但您也可以尝试这种方式:

<?php
$f_contents = file("random.txt");
$line = $f_contents[rand(0, count($f_contents) - 1)];
?>

关于php - 从 TXT 文件中提取随机行作为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5904045/

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