gpt4 book ai didi

php - 查找字符串中的文本并向其中添加其他文本

转载 作者:行者123 更新时间:2023-11-29 13:04:28 25 4
gpt4 key购买 nike

在我的 MySQL 数据库中,我有一个格式为 TEXT 的字段。
在其中一些列中,它将包含

src="/images/imgname.jpg"

当我从数据库中提取数据时,如何找到此文本并在“/images”前面添加其他文本?

src="http://domain.com/images/imgname.jpg"

我不想将其永久保存在数据库中,因为不同的文件有不同的需求。有些不需要绝对路径,而另一些则需要。我只想从一些文件中动态添加它们。

谢谢!瑞克

最佳答案

您可以使用 mysql_fetch_array() 将其放入 while 循环中。

$query = "SELECT query to select the wanted details from the database table.";

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

while ($row = $mysqli_fetch_array($result)) {
echo "<img src='/domain.com/images/".$row['image_location']."'>";
}

关于php - 查找字符串中的文本并向其中添加其他文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22924750/

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