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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:59:46+00:00 2026-05-25T21:59:46+00:00

If I wrap a closure in another closure, I can’t invoke the nested closure.

  • 0

If I wrap a closure in another closure, I can’t invoke the nested closure. Why not? I think an example illustrates the problem best.

This PHP code:

function FInvoke($func) {
    $func();
}

FInvoke(function () { echo "Direct Invoke Worked\n"; });

Works as expected and prints “Direct Invoke Worked”.

However, If I slightly modify it to add another level of indirection, it fails:

function FInvoke($func) {
    $func();
}

function FIndirectInvoke($func) {
    FInvoke(function () {
        $func();
    });
}

FIndirectInvoke(function () { echo "Never makes it here"; });

The failure message is “Fatal error: Function name must be a string in file.php on line X”

  • 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-25T21:59:47+00:00Added an answer on May 25, 2026 at 9:59 pm

    you have to pass $func to the inner lambda using “use” keyword

    function FInvoke($func) {
        $func();
    }
    
    function FIndirectInvoke($func) {
        FInvoke(function () use($func) { // <--- here
            $func();
        });
    }
    
    FIndirectInvoke(function () { echo "ok"; });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I tell closure compiler that an anonymous function should not be removed
Have been struggling with Javascript closure for a while trying to wrap brain around
I'd like to wrap java's PriorityQueue class in clojure for use in another part
I was attempt to wrap some simple logic into a javascript/jquery closure to bind
I am trying to wrap an external library in more idiomatic Clojure. This includes
I Just can't seem to wrap my head around them. As I understand it's
I can't wrap my head around the differences among these terms. Are COM and
I'm trying to wrap my head around closures, and I think I've found a
I'm trying to wrap my head around closures in Javascript. Here is an example
Still trying to wrap my head around Clojure. I can see how to implement

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.