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 am trying to integrate GeSHi syntax highlighter into my blog.

I am getting a syntax error in my code. I am not very good with PHP code hence seeking help in correcting the syntax.

My code is :

private function _renderCode($string)
{
    return preg_replace('/<listing (.*?)>(.*?)</listing>/es',
                '$this->highlightString('\2', '\1')', 
                $string);
}

The Error Message is :

Parse error: syntax error, unexpected '\' (T_NS_SEPARATOR)
share|improve this question

2 Answers

up vote 1 down vote accepted

Try '$this->highlightString(\'\\2\', \'\\1\')',

share|improve this answer
Thanks @Esailija It worked. Thanks for the help. – Vikram Rao Dec 8 '12 at 17:13

Look at the syntax highlighting:

'$this->highlightString('\2', '\1')'

You need to escape the single quotes in a single-quoted string.

'$this->highlightString(\'\2\', \'\1\')'

(And the preferred form is '$this->highlightString(\'$2\', \'$1\')', by the way.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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