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

  • Home
  • SEARCH
  • 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 6379363
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:07:43+00:00 2026-05-25T02:07:43+00:00

In my database many posts has some characters like : [media id=468 width=660 height=440]

  • 0

In my database many posts has some characters like :

[media id=468 width=660 height=440]

With php i want to get media id (the number) and replace it with another function, also after taking the id, dont want that [media id=468 width=660 height=440] to be shown at my posts in html.

Please can some one help with this ?
Thank you a lot

PS : I dont need height and width.

  • 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-05-25T02:07:44+00:00Added an answer on May 25, 2026 at 2:07 am

    You can use preg_replace_callback():

    function do_stuff($values) {
        return '<object id="' . $values['id'] . '" />';
    }
    
    $text = 'some stuff [media id=468 width=660 height=440] more stuff';
    
    $new_text = preg_replace_callback('@\[media id=(?P<id>\S+) width=\S+ height=\S+\]@', 
                          'do_stuff', $text);
    
    echo "text: $text\n new text: $new_text";
    

    Will give you

    text: some stuff [media id=468 width=660 height=440] more stuff
    new text: some stuff <object id="468" /> more stuff
    

    If you change your do_stuff() callback:

    function do_stuff($values) {
        $allowed = array('468', '222'); 
    
        if (in_array($values['id'], $allowed)) {
            return '<object id="' . $values['id'] . '" />';
        } else {
            return $values[0]; 
        }
    }
    

    This will just give you back the same text if id is not 468 or 222. This is a fairly simple example, I am sure you can figure out how to tweak the behavior to suit your needs.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Below is some code I've written that is effective, but makes too many database
The site I am developing in php makes many MySQL database requests per page
Lets say I have an entity called User which has many Posts. My service
first of all I would like to thank you for the many good posts
Many database systems don't allow comments or descriptions of tables and fields, so how
I have database with many tables. In the first table, I have a field
I have a database that many different client applications (a smattering of web services,
I have an access database with many tables. I am looking for a field
I know there are many database design tool, database modeling tool. Example, ER-win ,
Sometimes you need to upgrade the database with many rows that you have in

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.