The Facebook XHP extension introduces what are basically XML literals (well, XHTML literals) to the PHP language, allowing syntax like the following:

$foo = <div>hello</div>;

$foo = <div>
       hello
       </div>;

$foo = 'hello';
echo <div>{$foo}</div>; // outputs <div>hello</div>

$foo = 'hello';
echo <div>{substr($foo, 0, 2)}</div>; // outputs <div>he</div>

The biggest problem is that I cannot find an IDE that supports this syntax without flagging it as a syntax error.

I'm told that Facebook generally uses vim or emacs for development but I'm hoping for a more full-blown IDE that supports this syntax. At present, Netbeans 6.9, 7.0 M2, and Zend Studio 8 all flag this syntax as an error even though it executes fine on PHP with the XHP extension enabled.

Suggestions for an editor or plugin to an editor that allows this to work without syntax errors?

Info about XHP: https://github.com/facebook/xhp/wiki

link|improve this question
feedback

3 Answers

I never used this extension I just pasted your code in a PHP page in PHPDesigner 7 and it did not considered it an error.

I just love this app: http://www.mpsoftware.com/

Try it and see if it suits your needs.

link|improve this answer
feedback

this thread is pretty old, but I hope this can help somebody else! I tried the code in aptana studio3 and works!

link|improve this answer
feedback

I just searched the JetBrains website for this feature (in PHPStorm): They say it is very complex to provide this and so it will not come soon ( http://youtrack.jetbrains.com/issue/WI-1208 ). I think that will be the same on all other major IDEs.

What comes into my mind: Emacs. I've just started to learn Emacs because of the possibility to extend it a very easy way, just for DSLs like XHP (which is indeed an embedded DSL). Here's a good tutorial for Emacs http://david.rothlis.net/emacs/howtolearn.html.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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