Jump to content

cheesycarrion

Members
  • Posts

    32
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.cheesycarrion.com

Profile Information

  • Gender
    Not Telling

cheesycarrion's Achievements

Member

Member (2/5)

0

Reputation

  1. I tried using your variation but unfortunately it still doesn't work and parses the content inside code tags regularly.
  2. I'm trying to make it so that any html or bbcode inside the [ code ] tag isn't parsed. here's what I've got: (it doesn't work. stuff inside the [ code ] tag still gets treated like normal.) <?php function parse_bbcode($input) { $bb_replace = array( '/\[img\](.*?)\[\/img\]/is', '/\[b\](.*?)\[\/b\]/is', '/\[i\](.*?)\[\/i\]/is', '/\[u\](.*?)\[\/u\]/is', '/\[url\=(.*?)\](.*?)\[\/url\]/is', '/\[url_blank\=(.*?)\](.*?)\[\/url_blank\]/is', '/\[textarea\](.*?)\[\/textarea\]/is', '/\[url\](.*?)\[\/url\]/is', '/\[url_blank\](.*?)\[\/url_blank\]/is', '/\[quote\=(.*?)\](.*?)\[\/quote\]/is', '/\[quote\](.*?)\[\/quote\]/is', '/\[code\](.*?)\[\/code\]/is', '/\[color\=(.*?)\](.*?)\[\/color\]/is', '/\[size\=(.*?)\](.*?)\[\/size\]/is' ); $bb_replacements = array( '<img src="$1" alt="$1" />', '<span style="font-weight: bold;">$1</span>', '<span style="font-style: italic;">$1</span>', '<span style="text-decoration: underline;">$1</span>', '<a href="$1">$2</a>', '<a href="$1" target="_blank">$2</a>', '<textarea>$1</textarea>', '<a href="$1">$1</a>', '<a href="$1" target="_blank">$1</a>', '<span class="quote">$1 said:<span>$2</span></span>', '<span class="quote">quote:<span>$1</span></span>', '<code>' . str_replace(array("[","]"),array("&#91","&#93"),htmlspecialchars('$1')) . '</code>', '<span style="color:$1;">$2</span>', '<span style="font-size:$1;">$2</span>' ); return preg_replace($bb_replace,$bb_replacements,$input); } ?>
  3. bump again. please if you need any more information or need me to make more specific notes or anything, tell me.
  4. bump.. If anybody needs anymore information or more specific information, just tell me.
  5. I made this script to convert solar time to sidereal time, but the problem is that sometimes the (when refreshing the page about once a second) the sidereal second count stops for about 15 seconds, then catches up, but the minutes don't roll over correctly and you stay at the same repeating minute for a while until it somehow fixes itself and gets back on. (at which point it's accurate right down to the second.) I have absolutely no idea why it does this or how to fix it. <?php $server_timezone_offset = 2; // If timezone of server is Pacific, set to 0. // amount of seconds in a tropical year: $tropical = 365.2425*60*60*24; // amount of seconds in a sidereal day: $sidereal = ((23*60)+56)*60+4.090530833; $months = array(0,31,28.25,31,30,31,30,31,31,30,31,30,31); $c_sec = date("s") - 114; // I was 9:32:54 off. $c_min = date("i") - 34; $c_hour = date("H") - $server_timezone_offset - 17; // 2 is for timezone offset from server's time $c_day = date("z"); $c_month = date("m"); $c_year = date("Y"); while ($c_sec<0) { $c_sec = $c_sec + 60; $c_min = $c_min - 1; } while ($c_min<0) { $c_min = $c_min + 60; $c_hour = $c_hour - 1; } while ($c_hour<0) { $c_hour = $c_hour + 24; $c_day = $c_day - 1; } while ($c_day<1) { $c_day = $c_day + $months[$c_month-1]; $c_month = $c_month - 1; } while ($c_month<1) { $c_month = $c_month + 12; $c_year = $c_year - 1; } if (strlen($c_hour)==1) $c_hour = 0 . $c_hour; if (strlen($c_min)==1) $c_min = 0 . $c_hour; if (strlen($c_sec)==1) $c_sec = 0 . $c_hour; ////////////////////////////////////////////// $c_hour_pacific = date("H") - $server_timezone_offset; if ($c_hour_pacific<0) $c_hour_pacific = $c_hour_pacific + 24; if (strlen($c_hour_pacific)==1) $c_hour_pacific = 0 . $c_hour_pacific; ////////////////////////////////////////////// $i = 0; while ($i < $c_month) { $topical_day = $tropical_day + $months[$i]; $i++; } $tropical_day = $tropical_day + $c_day; $tropical_sec = $tropical_day * 24 * 60 * 60; $tropical_sec = $tropical_sec + $c_sec + ($c_min*60) + ($c_hour*60*60); $c_sid_day_j = $tropical_sec / $sidereal; $c_sid_day = floor($c_sid_day_j); $c_sid_day_frac = $c_sid_day_j - $c_sid_day; $c_sid_hours_j = $c_sid_day_frac * 24; $c_sid_hours = floor($c_sid_hours_j); $c_sid_hours_frac = $c_sid_hours_j - $c_sid_hours; $c_sid_minutes_j = $c_sid_hours_frac * 60; $c_sid_minutes = floor($c_sid_minutes_j); $c_sid_minutes_frac = $c_sid_minutes_j - $c_sid_minutes; $c_sid_seconds = round($c_sid_minutes_frac * 60); ////////////////////////////////////////////// if ($c_sid_seconds<10) $c_sid_seconds = 0 . $c_sid_seconds; if ($c_sid_minutes<10) $c_sid_minutes = 0 . $c_sid_minutes; if ($c_sid_hours<10) $c_sid_hours = 0 . $c_sid_hours; ////////////////////////////////////////////// echo "Solar: " . $c_hour_pacific . ":" . date("i") . ":" . date("s") . "<br />\nSidereal: " . $c_sid_hours . ":" . $c_sid_minutes . ":" . $c_sid_seconds; $finished_solar = $c_hour_pacific . ":" . date("i") . ":" . date("s"); $finished_sidereal = $c_sid_hours . ":" . $c_sid_minutes . ":" . $c_sid_seconds; ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.