gpt4 book ai didi

php - 如何将数组分隔成变量

转载 作者:搜寻专家 更新时间:2023-10-30 23:15:28 24 4
gpt4 key购买 nike

我已经尝试查找此内容,但我没有得到与我正在做的事情直接相关的答案。我正在尝试从以前提交的数据库中检索值。我想使用这些值来定位服务器上的文件路径并使用 fillepath 信息来显示文件。为此,我需要分离我在这里的数组。我将如何分离这个数组?

$code = $_POST['codeInput'];


$code = htmlspecialchars($code);


$submitCodes = "SELECT story,video FROM `storycodes` WHERE `code` = $codeInput";


$files = mysql_fetch_array($submitCodes);

mysql_close($con);

print_r(array_values($files));

感谢大家的帮助。理想情况下,我希望获得 $story 或 $storyPath 和 $video 或 $videoPath 之类的变量我需要视频作为变量,以便我可以使用视频播放器播放它。

编辑:我从 mysql 更改为 mysqli,现在我收到了所有这些似乎无法修复的错误。我有结果集,但它说我没有。

警告:mysqli_fetch_assoc() 期望参数 1 为 mysqli_result,第 26 行/home/content/98/10339998/html/scripts/stories.php 中给出的 bool 值

我认为一旦数组被整理出来,这个警告应该会自行修复:

警告:extract() 期望参数 1 为数组,第 28 行/home/content/98/10339998/html/scripts/stories.php 中给出的 null

警告:mysqli_free_result() 期望参数 1 为 mysqli_result, bool 值在/home/content/98/10339998/html/scripts/stories.php 第 30 行

$con = mysqli_connect("storycodes.db.10339998.hostedresource.com",$username,$password);

if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysqli_select_db($con, "storycodes");

$code = $_POST['codeInput'];


$code = htmlspecialchars($code);

$query = "SELECT story,video FROM `storycodes` WHERE `code` = $codeInput";

$result = mysqli_query($con, $query);

$row = mysqli_fetch_assoc($result);

extract($row);

mysqli_free_result($result);
mysqli_close($con);

echo $story . $video;

最佳答案

这样使用

$files = mysql_fetch_array($submitCodes); 
extract( $files );

// now you can use it like this
echo $story . $video; // as variables

关于php - 如何将数组分隔成变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14721164/

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