Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need some help with an IRC Bot PHP script. I am making it pull data from my icecast2 stream to display the current song in a certain lobby. I want to make it parse data from my page to collect song tiles and to check if it has changed, every 10 seconds. The command to initiate the function is !song.. It works great but I have to run the command manually whenever I want to see the song title. You can see the two code snippets below:

This is the timer function which is being called in Radio script further down:

public function checkTimer($sServer)
{
    global $Bot;

    $Me = $Bot[$this->sIndex];

    if(!array_key_exists($sServer,$this->aTimers)) { $this->aTimers[$sServer] = array(); }

    if (count($this->aTimers[$sServer]) > 0)
    {      
        foreach($this->aTimers[$sServer] as $key => $tmr)
        {
            if (time( ) >= $tmr['Time'])
            {
                eval($tmr['Action']);
                $times = (isset($this->aTimers[$sServer][$key]['Times'])) ? $this->aTimers[$sServer][$key]['Times']: 0;
                if ($times != '-1')
                {
                    $times--;
                    if($times > 0)
                    {
                        $this->aTimers[$sServer][$key]['Time'] = time( ) + $this->aTimers[$sServer][$key]['Repeat'];
                        $this->aTimers[$sServer][$key]['Times'] = $times;
                    }
                    else
                    {
                        unset($this->aTimers[$sServer][$key]);
                    }
                }
                else
                {
                    $this->aTimers[$sServer][$key]['Time'] = time()+$this->aTimers[$sServer][$key]['Repeat'];
                }
            }
        }
    }
}


public function addTimer($sServer, $sName, $sTimes, $sRepeat, $sAction)
{          
    global $Bot;

    $Me = $Bot[$this->sIndex];

    $this->aTimers[$sServer][$sName] = array();
    $this->aTimers[$sServer][$sName]['Time'] = time() + $sRepeat;
    $this->aTimers[$sServer][$sName]['Times'] = $sTimes;
    $this->aTimers[$sServer][$sName]['Repeat'] = $sRepeat;
    $this->aTimers[$sServer][$sName]['Action'] = $sAction;

Radio Script:

<?php

class Module_Radio
{      
    private $cSong;

    function Start()
    {        
        $this->addTimer('SEVENHQ', 'boomboom',  -1, 10, 'song');
    }


    public function song()
    {      
        $sData = file_get_contents($sURL);
        $strHTML = file_get_contents('http://24.101.14.162:8000/status2.xsl?mount=/Orienradio.ogg');
        $myArray = explode(",", $sData);
        $sSong = $myArray[16];

        $sHash = md5($aLatestSong[16]);

        if($this->cSong != $sHash)
        {
            $sSong = $aLatestSong[16];
            $this->Say("#radio", "4[Orien Radio] A new song is being played: 12{$sSong}");
            $this->cSong = $md5;
        }
    }          
}

?>

The only error that I am aware of is the below:

PHP Parse error:  syntax error, unexpected end of file in /home/user/phpbot/botname/System/Bot.php(450) : eval()'d code on line

PHP Parse error:  syntax error, unexpected end of file in /home/acc/script.php(450) : eval()'d code on line
share|improve this question

closed as too localized by Till Helge, Gordon, hakre, DaveRandom, Jocelyn Mar 5 at 12:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

It means that whatever PHP code you've got in $tmr['Action'] which is being eval()'d is missing at least one closing }, ', or " - it's a syntax error.

On the meta-level, eval() is evil and should NOT be used.

share|improve this answer
2  
In 99.9% of circumstances, including this one. – Lusitanian Jul 31 '12 at 16:28
make that 99.99999999999999999999999999999999999%, neh just let's say: You should never ever need eval() for clarity :) @lusitanian – PeeHaa 埽 Jul 31 '12 at 16:32
but goto provides very clear code @PeeHaa – Lusitanian Jul 31 '12 at 16:34
@Lusitanian I guess it would be best to combine eval() and goto to make any code completely un-debuggable, unreadable and a big PITA. – feeela Jul 31 '12 at 16:41
1  
Any solution which calls for eval() is automatically a WRONG solution. – Marc B Jul 31 '12 at 16:47
show 3 more comments

eval( 'song' ); isn't valid PHP, you should write it like any other PHP-code; e.g.: eval( 'song();' );

So your function call should become:

$this->addTimer( 'SEVENHQ', 'boomboom',  -1, 10, 'song();' );
share|improve this answer
Thanks for the support. I will do some testing and update ASAP – xxethanixx Jul 31 '12 at 16:32
I tried just that and now I am receiving the below error: $this->addTimer('SEVENHQ', 'boo', -1, 10, 'song();'); – xxethanixx Jul 31 '12 at 16:43
@xxethanixx This is not an error! – feeela Jul 31 '12 at 16:44
Omg derp! Sorry, here it is: PHP Fatal error: Call to undefined function song() in /home/user/script.php(450) : eval()'d code on line 1 – xxethanixx Jul 31 '12 at 17:24

Not the answer you're looking for? Browse other questions tagged or ask your own question.