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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:14:46+00:00 2026-05-31T11:14:46+00:00

I am creating a action-hook system for a php application. Here is what I

  • 0

I am creating a action-hook system for a php application.
Here is what I have done so far.
$where is the name of the hook
$priority decides the order followed when there are more than one actions for one hook location.
(hook::execute() is called when a hook location is reached and my application core runs any hooked actions)

class hooks{
    private $hookes;    
    function __construct()
    {
        $hookes=array();        
    }
    function add_action($where,$callback,$priority=50)
    {
        if(!isset($this->hookes[$where]))
            $this->hookes[$where]=array();
        $this->hookes[$where][$callback]=$priority;
    }
    function remove_action($where,$callback)
    {
        if(isset($this->hookes[$where][$callback]))
            unset($this->hookes[$where][$callback]);
    }
    static function compare($a,$b)
    {
        return $a>$b?1:-1;
    }
    function execute($where)
    {
        if(isset($this->hookes[$where])&&is_array($this->hookes[$where]))
        {
            usort($this->hookes[$where],"hook::compare");
            foreach($this->hookes[$where] as $callback=>$priority)
            {
                call_user_func($callback);
            }
        }
    }
};

My question is what to do in execute($where) to have it accept a variable argument list and pass them in call_user_func($callback);
For different calls to execute, there may be variable number of parameters to be passed in the callback.

  • 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-31T11:14:47+00:00Added an answer on May 31, 2026 at 11:14 am

    You can use call_user_func_array function, second argument is array with arguments

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

Sidebar

Related Questions

I have an application where I'm creating a new object via a new action.
I'm creating an action script 3 (Flash CS5) application. I have a 2D array
Here's my implementation, I'm basically creating the action sheet and picker view on the
I have trouble creating a Catalyst action that would match a single file in
Typically when I'm creating a Swing (or any UI) application, I have various Actions
I have been creating my application in a primarily programatic approach and have been
Typically when creating an action from something like a button you have this [button
I'm creating HTML with a loop that has a column for Action. That column
All my dynamically generated action links etc. are creating links like / A ccount/
I'm creating a msi based installer (using InstallShield) that has a custom action to

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.