Wed Nov 21, 2007 3:59 am |
Replies: 4 |
Views: 4657 |
|
|
+1 from me, I'm working on both UTF-8 and ISO-8859-2 projects and I have to switch the encoding all the time if I work on remote servers.
|
Wed Nov 21, 2007 3:51 am |
Replies: 21 |
Views: 10643 |
|
|
I'm using ZF in many projects and I don't see any problem? For example:
/path/to/someproject/ <-- php project root set here
/path/to/someproject/lib/Zend/ <-- ZF
/path/to/someproject/pu ...
|
Fri Sep 28, 2007 7:50 am |
Replies: 0 |
Views: 5202 |
|
|
if (! $table instanceof Zend_Db_Table_Abstract)
When I right-click on Zend_Db_Table_Abstract and select Find declaration - nothing happens. I works with "new ClassName" structure, s ...
|
Tue Sep 25, 2007 12:27 pm |
Replies: 2 |
Views: 4758 |
|
|
That's SOO GREAT I'm waiting for the version as I'm currently working on big project based on ZendFramework and I really need those interfaces
|
Tue Sep 25, 2007 2:44 am |
Replies: 2 |
Views: 4758 |
|
|
<?php
class AClass
{
function someAMethod() {}
}
interface Test_Interface
{
/**
* @return AClass
*/
function someTestMethod( ...
|
Sun Aug 05, 2007 5:12 am |
Replies: 3 |
Views: 4708 |
|
|
Great, I'm waiting for it
|
Sun Aug 05, 2007 5:11 am |
Replies: 8 |
Views: 5506 |
|
|
it "underscores" almost everything because corresponding code does not know the context and can't distinguish function call from function declaration. Code does not analyze the context until ...
|
Fri Aug 03, 2007 1:26 pm |
Replies: 8 |
Views: 5506 |
|
|
You're wrong. When I select the function name and right-click on it, the "Find declaration" doesn't show up, while it shows up when I right click on that function name without anything selec ...
|
Fri Aug 03, 2007 1:16 pm |
Replies: 3 |
Views: 4708 |
|
|
It would be GREAT to have unix-style autocompletion with Tab key. I'm using ZendFramework with all those looong class names.
So, when I type $plugins = new Zend_Con
it shows me bunch of proposal ...
|
Mon Jul 23, 2007 5:05 am |
Replies: 2 |
Views: 5889 |
|
|
THANX! works great!
|
Mon Jul 23, 2007 5:01 am |
Replies: 3 |
Views: 5435 |
|
|
So it should jump to the next executable line. Currently you can set a breakpoint which doesn't work - it's counter-intuitive.
|
Mon Jul 23, 2007 3:01 am |
Replies: 3 |
Views: 5435 |
|
|
When I set a breakpoint on empty line (empty at all or a comment) it does not work - like there's no breakpoint at all.
Also, when I put the cursor into a such line - the "Jump to cursor" d ...
|