5

I am actually trying to monitor a PHP variable (may be as a separate thread but not possible in PHP) and fire a PHP function whenever the value of the variable changes.

eg: lets take a variable $_GLOBALS['foo']=1;

if at any point in the code, the value of $_GLOBALS['foo'] changes to something else, i want to fire a PHP function immediately.

The variable can be anywhere inside a loop or in a function,etc.

Why i want this: I have a variable which stores the last error occured as a text. If the value of the variable changes from "" to something else, i want to trigger an error. My LOGIC may seem a bit strange but this is what i would like to do.

Thanx in advance.

Edit: I tried: How to use monitors in PHP? and How can one use multi threading in PHP applications but does not seem to solve the problem.

The Code (Thought this could solve some of your doubts on my question):

public function addtag($tagarray,$uid,$tagtype="1")
{
    $dbobj=new dboperations();
    $uiobj=new uifriend();
    $tagid=$uiobj->randomstring(30,DB_SOCIAL,SOCIAL_TAG,tag_tagid);
    $c=0;
    foreach($tagarray as $tags)
    {
        $c++;
        $tagname=$tags["tagname"];
        $taguid=$tags["tagid"];
        $dbobj->dbinsert("INSERT INTO ".SOCIAL_TAG." (".tag_tagid.",".tag_fuid.",".tag_tuid.",".tag_tagname.",".tag_tagtype.") VALUES
                ('$tagid','$uid','$taguid','$tagname','$tagtype')",DB_SOCIAL);
    }
    if($c==0)
    {
        $lasterror="No tags were added";return "";
    }
    else
    {
        return $tagid;
    }
}

Here, if i call a error handling function instead of monitoring the variable, it wont be advisable in my case since the error handling function may do any operation like give alert and redirect to a page or any similar operation.

I asked this question cause, i thought what if the script does not reach the line return ""; It would affect the project's workflow. Thats what i am worried about.

And the variable i was talking about is $lasterror and i have many functions like this where $lasterror is used.

7
  • 1
    A quick Google search brought this up, not sure if it's any good for you, but have a read through - alexatnet.com/articles/programming-events-php Commented Apr 7, 2013 at 6:45
  • This seems similar stackoverflow.com/questions/385420/variable-watch-in-php but they did not get an answer. Commented Apr 7, 2013 at 6:45
  • @francisco.preller Thanx for the quick reply. I went through it but in that case, we have to trigger the events manually, its not automatic. Commented Apr 7, 2013 at 7:01
  • I guess my biggest question is When exactly do you want to check this? Would it be unreasonable to check the $lasterror on page load? Or if the error is generated on page creation, check it as a last stop before sending the view. Commented Apr 7, 2013 at 7:05
  • @vignesh what do you mean by 'automatic'? This isn't going to happen unless you program the behaviour in. What you are describing is a need for an event system. Commented Apr 7, 2013 at 7:07

2 Answers 2

6

I saw this, so I built this:

https://github.com/leedavis81/vent

Should solve your problem.

Sign up to request clarification or add additional context in comments.

Comments

4

There is no built-in way to do this in PHP, and there's no easy way to add it. It doesn't really feel right for the way the language works anyway.

Instead of setting a variable, you could build a custom function that handles the error - or use PHP's built-in error handling functionality using a custom error handler.

Another error handling method which comes close to what you want to do (I think) is exceptions.

3 Comments

Agreed - the best way would to use proper OOP and then log changes/accesses to the variable.
Thanx for the quick reply. I could do it but i think it might affect the project's workflow. If it does not, then this is not an issue.
@Pekka: I think you are right. I better change my workflow to use exceptions because there is no other way to do this in PHP since i researched a bit more now. Thanx a lot..

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.