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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:31:34+00:00 2026-05-11T20:31:34+00:00

In response to another question I asked about regular expressions, I was told to

  • 0

In response to another question I asked about regular expressions, I was told to use the preg_replace_callback function (PHP regex templating – find all occurrences of {{var}}) as a solution to my problem. This works great, but now I have a question relating to variable scope in callback functions.

The function that parses the text is part of a class, but the data that I want to use is stored locally in the function. However, I have found that I cannot access this data from inside my callback function. Here are the ways that I have tried so far:

  • Implement the callback as a private class function, passing '$this->callback_function' as the callback parameter (doesn’t work, php has a fatal error)
  • Implement the callback inside the function that uses it (see example below) but this didn’t work either because $newData is not in scope inside callback_function

Any ideas as to how I can access $newData inside my callback function, preferably without using globals?
Many thanks.

Example below for the second attempt (doesn’t format properly when I put it after the bullet point)

public function parseText( $newData ) {
  ...
  function callback_function( $matches ) {
    ...  //something that uses $newData here
  }
  ...
  preg_replace_callback( '...', 'callback_function', $textToReplace );
}
  • 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-11T20:31:34+00:00Added an answer on May 11, 2026 at 8:31 pm
    • Implement the callback as a private class function, passing ‘$this->callback_function’ as the callback parameter (doesn’t work, php has a fatal error)

    preg_replace_callback( ‘…’, ‘callback_function’, $textToReplace );

    Change your call to be preg_replace_callback ('...', array($this, 'callback_function'), $textToReplace); while callback_function is a private method in your class.

    <?php
    
    class PregMatchTest
    {
        
        private callback_function ($matches)
        {
            // ......
        }
    
        public function parseText ($newData)
        {
            // ....
            
            preg_replace_callback( '...', array($this, 'callback_function'), $textToReplace );
        }
        
    }
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 123k
  • Answers 123k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer When I think about "large scale applications" I think of… May 12, 2026 at 1:02 am
  • Editorial Team
    Editorial Team added an answer Alright well, plenty of searching around (wow, how hard is… May 12, 2026 at 1:02 am
  • Editorial Team
    Editorial Team added an answer Here's a list of all supported methods for LINQ to… May 12, 2026 at 1:02 am

Related Questions

In response to a question I asked a few days ago, I'm attempting to
I have a question about this question . I posted a reply there but
I asked a question a while ago about which local DB was right for
In a past interview, I was asked how would I write a mission critical

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.