下面是我的bbcode数组中的示例代码。我将在需要添加的内容之后进行解释。
$find = array(
'~\<~s',
'~\>~s',
'~\[hr\]~s',
'~\[b\](.*?)\[/b\]~s',
'~\[i\](.*?)\[/i\]~s',
'~\[u\](.*?)\[/u\]~s',
'~\[s\](.*?)\[/s\]~s',
'~\[ul\](.*?)\[/ul\]~s',
'~\[li\](.*?)\[/li\]~s',
'~\[ol\](.*?)\[/ol\]~s'
);
$replace = array(
'<',
'>',
'<hr>',
'<b>$1</b>',
'<i>$1</i>',
'<span style="text-decoration:underline;">$1</span>',
'<del>$1</del>',
'<ul>$1</ul>',
'<li>$1</li>',
'<ol>$1</ol>'
);
$return = preg_replace($find, $replace, $text);
return nl2br($return);
我需要做的是添加一个[item]标签,该标签将从mysql数据库中获取数据。
[项目] 16 [/项目]
将进入项目表并使用ID 16获取名称和图像链接。然后显示:-名称
我已经尝试这样做了一段时间,但步履蹒跚。任何建议都很好。谢谢。
回应@IllegalPigeon。
我可以修改您的代码,但是没有任何结果。我在一个大型查询的主页上对其进行了测试。我已经将其缩减到测试页,运行了一个变量,但仍然无法获得任何结果。我正在使用Mysqli,并且能够根据需要编辑查询。
我确定我走在正确的轨道上。可能只是缺少一些愚蠢的东西。
我当前的代码是:
工作代码。从@IllegalPigeon答案更新。
<?php
//just db stuff.
include("config.php");
// BBcode array
$find = array(
'~\<~s',
'~\>~s',
'~\[hr\]~s',
'~\[b\](.*?)\[/b\]~s',
'~\[i\](.*?)\[/i\]~s',
'~\[u\](.*?)\[/u\]~s',
'~\[s\](.*?)\[/s\]~s',
'~\[ul\](.*?)\[/ul\]~s',
'~\[li\](.*?)\[/li\]~s',
'~\[ol\](.*?)\[/ol\]~s'
);
$replace = array(
'<',
'>',
'<hr>',
'<b>$1</b>',
'<i>$1</i>',
'<span style="text-decoration:underline;">$1</span>',
'<del>$1</del>',
'<ul>$1</ul>',
'<li>$1</li>',
'<ol>$1</ol>'
);
$text = "Test text.... [item]6[/item] .... text text";
preg_match_all('#\[item\](.*?)\[/item\]#i', $text, $matches, PREG_SET_ORDER );
for ( $i = 0, $j = count( $matches ); $i < $j; $i++ )
{
$id = $matches[$i][1];
if(filter_var($id, FILTER_VALIDATE_INT))
{
//It's a number, now you need to do your query
//You didn't post most so modify your query to look like:
$sql = "SELECT name, image_url FROM items WHERE id = $id";
//Assuming you're using PDO, lets check if anything was returned
if( $result = $db->query($sql) )
{
$row = $result->fetch_assoc();
array_push($find, '~\[item\](.*?)\[/item\]~s');
array_push($replace, '<img src="' . $row['image_url'] . '" title="' . $row['name'] . '" />');
} else {
die('There was an error running the query [' . $db->error . ']');
}
}
}
$return = preg_replace($find, $replace, $text);
echo nl2br($return);
最佳答案
这是完全未经测试的,但是,我不明白为什么它不起作用。您将需要对自己进行一些编辑,因为我根本不知道您正在使用哪种数据库类。
因此,请尝试以下代码:
$find = array(
'~\<~s',
'~\>~s',
'~\[hr\]~s',
'~\[b\](.*?)\[/b\]~s',
'~\[i\](.*?)\[/i\]~s',
'~\[u\](.*?)\[/u\]~s',
'~\[s\](.*?)\[/s\]~s',
'~\[ul\](.*?)\[/ul\]~s',
'~\[li\](.*?)\[/li\]~s',
'~\[ol\](.*?)\[/ol\]~s'
);
$replace = array(
'<',
'>',
'<hr>',
'<b>$1</b>',
'<i>$1</i>',
'<span style="text-decoration:underline;">$1</span>',
'<del>$1</del>',
'<ul>$1</ul>',
'<li>$1</li>',
'<ol>$1</ol>'
);
preg_match_all('#\[item\](.*?)\[/item\]#i', $text, $matches, PREG_SET_ORDER );
for ( $i = 0, $j = count( $matches ); $i < $j; $i++ )
{
$id = $matches[$i][1];
//Lets make sure it is a number.
if(filter_var($id, FILTER_VALIDATE_INT))
{
//It's a number, now you need to do your query
//You didn't post most so modify your query to look like:
//"SELECT name, image FROM yourTable WHERE id = $id"
//Assuming you're using PDO, lets check if anything was returned
if( $result = $con->fetch() )
{
array_push($find, '~\[item\](.*?)\[/item\]~s');
array_push($replace, '<img src="' . $result['image'] . '" title="' . $result['name'] . '" />');
}
}
}
$return = preg_replace($find, $replace, $text);
return nl2br($return);
关于php - php bbcode与mysql检索,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33091099/