Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8373359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T14:39:29+00:00 2026-06-09T14:39:29+00:00

I am trying to implement nested quotes in my BBcode class. But havent succeed

  • 0

I am trying to implement nested quotes in my BBcode class. But havent succeed yet.

This is the code im trying to implement:

$string = '
[quote="test"]
    [quote="abc"]Test[/quote]
    test
[/quote]
Hello
';

function parseTagsRecursive($input)
{

    $regex = '#\[quote="(.*?)"]((?:[^[]|\[(?!/?quote=""])|(?R))+)\[/quote]#';

    if (is_array($input)) {
        $input = '<div style="background:#282828; padding:0; color:white;">
        <span style="display:block; background:#161616; margin-top:0; padding:5px;">' . $input[1] . ' wrote</span>
        <span style="display:block; padding:5px; font-style:italic; font-size:12px;">'. $input[2] . '</span>
    </div>';
    }

    return preg_replace_callback($regex, 'parseTagsRecursive', $input);
}

$output = parseTagsRecursive($string);

echo $output;

And this is what i got so far:

class BBCode {

    public $str;

    function parse() {

        $this->str = preg_replace_callback(
                '#\[quote="(.*?)"]((?:[^[]|\[(?!/?quote=""])|(?R))+)\[/quote]#', 
                array($this, 'nestedQuotes'), 
                $this->str);

        return $this->str;

    }

    function nestedQuotes($input) {
        if (is_array($input)) {
            $input = '<div style="background:#282828; padding:0; color:white;">
            <span style="display:block; background:#161616; margin-top:0; padding:5px;">' . $input[1] . ' wrote</span>
            <span style="display:block; padding:5px; font-style:italic; font-size:12px;">'. $input[2] . '</span>
        </div>';
        }
        return $input;
    }

}

$string = '
[quote="test"]
    [quote="abc"]Test[/quote]
    test
[/quote]
Hello
';

$b = new BBCode();
$b->str = $string;
echo $b->parse();

I hope someone can help with this. I have searched alot, but haven’t find any solutions to the problem.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T14:39:31+00:00Added an answer on June 9, 2026 at 2:39 pm

    Got it to work now.

    class BBCode {
        function parse() {
            $this->input = $this->nestedQuotes2($this->input);
        }
    
        function nestedQuotes2($input) {
            if (is_array($input))
                $input = '<div class="quote"><h2>' . $input[1] . ' skrev</h2><span class="txt">' . $input[2] . '</span></div>';
            return preg_replace_callback('#\[quote="(.*?)"]((?:[^[]|\[(?!/?quote=""])|(?R))+)\[/quote]#', array($this, 'nestedQuotes2'), $input);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement code for nested commenting which I found at http://www.jongales.com/blog/2009/01/27/php-class-for-threaded-comments/ .
I'm trying to implement Writable class, but i have no idea on how to
This is really simple but driving me nuts. I am trying to implement a
Trying to implement a search similar to here .This searches properties based on city,locality,property
Trying to implement some nested loops that are spitting out good old nested html
I am trying to implement a nested comment in D. nestingBlockComment : '/+' (options
I'm trying to implement a expression handling grammar (that deals with nested parenthesis and
Getting started with python. I am trying to implement positional index using nested dictionary.
I was trying to implement a nested tree structure in AngularJS. It consists of
I'm trying to implement the below, but my authenticationManager instance throws the below exception

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.