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 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

Related Questions

I have a php page server1.com/page1.php (not real) and another page server2.com/page2.php page1.php response
Response to : Regular Expression to find a string included between two characters while
This question is like another , except that one is asked in the context
In response to another question of mine, someone suggested that I avoid long lines
Another question about Web proxy. Here is my code: IWebProxy Proxya = System.Net.WebRequest.GetSystemWebProxy(); Proxya.Credentials
I asked a question a while ago about which local DB was right for
This is a follow up of another question I asked last night. My problem
This goes along with another question that I have asked, I have a drop
I asked a similar question before, but got no helpful response so I will
I have the same question that was asked in another post except I'm having

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.