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 8569443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:20:08+00:00 2026-06-11T18:20:08+00:00

I have a form where users can quote others using bbcode. When somebody push

  • 0

I have a form where users can quote others using bbcode. When somebody push quote button, the textarea value is :

[quote user=User date=1348246887 post=301]
User post text
[/quote]

And now, my code to transform into a block is :

$post = preg_replace("/\[quote user=(.*) date=(.*) post=(.*)](.*)\[\/quote\]/Uis", "<div class=\"quote\"><p>Quote by \\1 at time : \\2<a href=\"index.php?subject=".$_GET['subiect']."&post=\\3\">&nbsp;</a></p><span>\\4</span></div>", $post);

How can i convert the time to date into preg_replace ? In preg_replace i can’t do it, because the value of \2 is not set.

  • 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-11T18:20:09+00:00Added an answer on June 11, 2026 at 6:20 pm

    Try something like this (I added “test” inside the link, so you could see the link–not sure what you wanted there, but a non-breaking space won’t make the link visible.) I used htmlentities for security in case the “subiect” $_GET variable (which maybe you meant to be “subject”?) contained markup or quotes. And of course, you can customize the date() string first argument to your needs. Finally, I added \s+ to allow for more flexible whitespacing. I also changed delimiter ‘/’ to ‘@’ so you don’t need to escape ‘/’ within the regex.

    Updated for older PHP compatibility:

    <?php
    
    $post = <<<HERE
    [quote user=User date=1348246887 post=301]
    User post text
    [/quote]
    HERE;
    // ]  (just adding this comment to fix SO syntax colorer)
    
    function replacer ($matches) {
        return '<div class="quote"><p>Quote by '.$matches[1].' at time : '.
            date('Y m d', $matches[2]).'<a href="index.php?subject='.
            htmlentities($_GET['subiect'], ENT_COMPAT, 'UTF-8').
            '&post='.$matches[3].'">test&nbsp;</a></p><span>'.
            $matches[4].'</span></div>';
    }
    
    $post = preg_replace_callback(
        '@\[quote\s+user=(.*)\s+date=(.*)\s+post=(.*)](.*)\[/quote\]@Uis',
        'replacer',
        $post
    );
    
    var_dump($post);
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form where users can modify a collection of objects using a
I have a form where users can add input fields with jQuery. <input type="text"
I have a form which users can add controls to and when they right
I have a form where users can enter the names and emails addresses of
Let's say I have a form where users can search for people whose name
I have a dynamic form that users can add/delete sets of input fields. I
I have a form in witch users can add their working hours view them
I have a form where my users can register to my site. They fill
I have a form in my django app where users can upload files. How
I have a contact form on my website so users can send me an

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.