Log in

View Full Version : foo


filburt1
02-07-2004, 01:43 AM
[url=]

filburt1
02-07-2004, 01:44 AM
/**
* Attempts to convert $s to vB code.
*
* Attempts to convert $s (HTML) to vB code and returns the result. The translation is achieved by
* translating common elements such as <b> to [b], <a href=""> to this is red[/color]. This may be done in a future version.
*
* @param s string to convert (should contain HTML)
*
* @return vB code version of $s
*/
function vbms_html2bbcode($s)
{
// do the one-letter tags
$onelettertags = array("b", "i", "u");
foreach ($onelettertags as $tag)
{
$s = preg_replace("/<$tag.*>(.*)<\/$tag>/siU", "[$tag]\\1[/$tag]", $s);
}

// hyperlinks
$s = preg_replace("/<a.*\shref\s=\s\"(.*)\"\w>(.*)<\/a>/siU", "[url=\\1]\\2 (], etc. Unknown tags are
* deleted but the contents within them will remain with the exception of scripting tags (<script>).
*
* CSS conversions are not made; for example, <span style="color:red">this is red</span> will not
* translate over to *>/siU", "https://vborg.vbsupport.ru/", $s);

// colors (doesn't support CSS!)
$s = preg_replace("/<font\wcolor\w=\w\"(.*)\"\w>(.*)</font>", "[color=\\1]\\2", $s);

// script (just delete)
$s = preg_replace("/<script.*</script>/siU", "", $s);

// breaks to actual newline characters
$s = preg_replace("/<br[\w\/]*>/siU", "\n", $s);

// remove everything else
$s = preg_replace("/<.*>(.*)<\/.*>/siU", "\\1", $s);

return $s;
}

filburt1
02-07-2004, 01:44 AM
Sweet.