$Output = preg_replace_callback("~\[MediaImg=(.*?),(.*?)\](.*?)\[/MediaImg\]~s", function($Match)
{
$Data = $Match[3];
$Width = $Match[1];
$Height = $Match[2];
//Kodlar
}, $Input);
$Output = preg_replace_callback("~\[ShowThread\](.*?)\[/ShowThread\]~s", function($Match)
{
$ThreadID = $Match[1];
//Kodlar
}, $Input);
return $Output;