2010-09-09 05:14:17 +02:00
|
|
|
<?php
|
|
|
|
|
2010-12-31 03:32:49 +01:00
|
|
|
/**
|
|
|
|
* html2bbcode
|
|
|
|
*/
|
|
|
|
|
2010-09-09 05:14:17 +02:00
|
|
|
|
|
|
|
function html2bbcode($s) {
|
|
|
|
|
2011-02-10 02:51:05 +01:00
|
|
|
|
|
|
|
// only keep newlines from source that are within pre tags
|
|
|
|
|
|
|
|
$s = stripnl_exceptinpre($s);
|
|
|
|
|
|
|
|
|
2010-12-31 03:32:49 +01:00
|
|
|
// Tags to Find
|
|
|
|
|
|
|
|
$htmltags = array(
|
2011-01-18 04:50:18 +01:00
|
|
|
'/\<pre\>(.*?)\<\/pre\>/is',
|
|
|
|
'/\<p(.*?)\>/is',
|
|
|
|
'/\<\/p\>/is',
|
2010-12-31 03:32:49 +01:00
|
|
|
'/\<b\>(.*?)\<\/b\>/is',
|
|
|
|
'/\<i\>(.*?)\<\/i\>/is',
|
|
|
|
'/\<u\>(.*?)\<\/u\>/is',
|
|
|
|
'/\<ul\>(.*?)\<\/ul\>/is',
|
|
|
|
'/\<li\>(.*?)\<\/li\>/is',
|
2011-09-13 13:53:17 +02:00
|
|
|
'/\<img(.*?)width: *([0-9]+)(.*?)height: *([0-9]+)(.*?)src=\"(.*?)\" (.*?)\>/is',
|
|
|
|
'/\<img(.*?)height: *([0-9]+)(.*?)width: *([0-9]+)(.*?)src=\"(.*?)\" (.*?)\>/is',
|
|
|
|
'/\<img(.*?)src=\"(.*?)\"(.*?)width: *([0-9]+)(.*?)height: *([0-9]+)(.*?)\>/is',
|
|
|
|
'/\<img(.*?)src=\"(.*?)\"(.*?)height: *([0-9]+)(.*?)width: *([0-9]+)(.*?)\>/is',
|
2010-12-31 03:32:49 +01:00
|
|
|
'/\<img(.*?) src=\"(.*?)\" (.*?)\>/is',
|
|
|
|
'/\<div(.*?)\>(.*?)\<\/div\>/is',
|
|
|
|
'/\<br(.*?)\>/is',
|
|
|
|
'/\<strong\>(.*?)\<\/strong\>/is',
|
2011-02-03 03:09:27 +01:00
|
|
|
'/\<a (.*?)href=\"(.*?)\"(.*?)\>(.*?)\<\/a\>/is',
|
2010-12-31 03:32:49 +01:00
|
|
|
'/\<code\>(.*?)\<\/code\>/is',
|
|
|
|
'/\<span style=\"color:(.*?)\"\>(.*?)\<\/span\>/is',
|
2011-02-09 06:26:28 +01:00
|
|
|
'/\<span style=\"font-size:(.*?)\"\>(.*?)\<\/span\>/is',
|
2010-12-31 03:32:49 +01:00
|
|
|
'/\<blockquote\>(.*?)\<\/blockquote\>/is',
|
2010-12-31 08:48:11 +01:00
|
|
|
'/\<video(.*?) src=\"(.*?)\" (.*?)\>(.*?)\<\/video\>/is',
|
|
|
|
'/\<audio(.*?) src=\"(.*?)\" (.*?)\>(.*?)\<\/audio\>/is',
|
2011-06-15 12:41:28 +02:00
|
|
|
'/\<iframe(.*?) src=\"(.*?)\" (.*?)\>(.*?)\<\/iframe\>/is',
|
2010-12-31 03:32:49 +01:00
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
// Replace with
|
|
|
|
|
|
|
|
$bbtags = array(
|
2011-01-18 04:50:18 +01:00
|
|
|
'[code]$1[/code]',
|
|
|
|
'',
|
2011-01-17 08:48:44 +01:00
|
|
|
"\n",
|
2010-12-31 03:32:49 +01:00
|
|
|
'[b]$1[/b]',
|
|
|
|
'[i]$1[/i]',
|
|
|
|
'[u]$1[/u]',
|
|
|
|
'[list]$1[/list]',
|
|
|
|
'[*]$1',
|
2011-09-13 13:53:17 +02:00
|
|
|
'[img=$2x$4]$6[/img]',
|
|
|
|
'[img=$4x$2]$6[/img]',
|
|
|
|
'[img=$4x$6]$2[/img]',
|
|
|
|
'[img=$6x$4]$2[/img]',
|
2010-12-31 03:32:49 +01:00
|
|
|
'[img]$2[/img]',
|
|
|
|
'$2',
|
|
|
|
"\n",
|
|
|
|
'[b]$1[/b]',
|
2011-02-03 03:09:27 +01:00
|
|
|
'[url=$2]$4[/url]',
|
2010-12-31 03:32:49 +01:00
|
|
|
'[code]$1[/code]',
|
|
|
|
'[color="$1"]$2[/color]',
|
2011-02-09 06:26:28 +01:00
|
|
|
'[size=$1]$2[/size]',
|
2010-12-31 03:32:49 +01:00
|
|
|
'[quote]$1[/quote]',
|
|
|
|
'[video]$1[/video]',
|
|
|
|
'[audio]$1[/audio]',
|
2011-06-15 12:41:28 +02:00
|
|
|
'[iframe]$1[/iframe]',
|
2010-12-31 03:32:49 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// Replace $htmltags in $text with $bbtags
|
|
|
|
$text = preg_replace ($htmltags, $bbtags, $s);
|
|
|
|
|
|
|
|
call_hooks('html2bbcode', $text);
|
|
|
|
|
|
|
|
// Strip all other HTML tags
|
|
|
|
$text = strip_tags($text);
|
|
|
|
return $text;
|
2011-02-10 02:51:05 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function stripnl_exceptinpre($string)
|
|
|
|
{
|
|
|
|
// First, check for <pre> tag
|
|
|
|
if(strpos($string, '<pre>') === false)
|
|
|
|
{
|
|
|
|
return str_replace("\n","", $string);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is a <pre>, we have to split by line
|
|
|
|
// and manually replace the linebreaks
|
|
|
|
|
|
|
|
$strArr=explode("\n", $string);
|
|
|
|
|
|
|
|
$output="";
|
|
|
|
$preFound=false;
|
|
|
|
|
|
|
|
// Loop over each line
|
|
|
|
foreach($strArr as $line)
|
|
|
|
{ // See if the line has a <pre>. If it does, set $preFound to true
|
|
|
|
if(strpos($line, "<pre>") !== false)
|
|
|
|
{
|
|
|
|
$preFound=true;
|
|
|
|
}
|
|
|
|
elseif(strpos($line, "</pre>") !== false)
|
|
|
|
{
|
|
|
|
$preFound=false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are in a pre tag, add line and also add \n, else add the line without \n
|
|
|
|
if($preFound)
|
|
|
|
{
|
|
|
|
$output .= $line . "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$output .= $line ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output;
|
2010-12-31 03:32:49 +01:00
|
|
|
}
|
2010-09-09 05:14:17 +02:00
|
|
|
|