eclipse-pdt

Eclipse PDT & PHPUnit?

半城伤御伤魂 提交于 2019-12-03 01:57:55
问题 Is there any integration of PHPUnit with Eclipse PDT? If not, are there any plans to do so? 回答1: Sebastian Bergmann did approach pdt back in 2006... but with no obvious result. And his latest entries on his blog only mention PHPEdit 2.12 and Zend Studio. The only testing framework officially documented on the PDT side is the "PDT Testing Framework", and it does not seem actively maintained... So, no. There does not seem to be any plan to actively integrate PHPUnit in PDT anytime soon. 回答2:

Eclipse PDT vs. NetBeans for PHP development [closed]

倾然丶 夕夏残阳落幕 提交于 2019-12-02 17:53:59
How does Eclipse PDT compare to NetBeans for PHP development? I just bought a new computer with Windows 7 and I'm starting to set up a development environment for PHP. Has anyone used both IDEs lately and could make a quick comparison? If you know what major frameworks are supported, that would be great too. Yes, I switched from Eclipse to Netbeans for PHP development quite recently. And I have to admit - I like NetBeans better. It seems to me more lightweight and stable. It certainly loads faster. And code completion seems to be much better than in Eclipse - it doesn't fail so often, and you

Eclipse PDT & PHPUnit?

此生再无相见时 提交于 2019-12-02 15:33:21
Is there any integration of PHPUnit with Eclipse PDT? If not, are there any plans to do so? Sebastian Bergmann did approach pdt back in 2006 ... but with no obvious result. And his latest entries on his blog only mention PHPEdit 2.12 and Zend Studio . The only testing framework officially documented on the PDT side is the "PDT Testing Framework" , and it does not seem actively maintained... So, no. There does not seem to be any plan to actively integrate PHPUnit in PDT anytime soon. cirpo See Eclipse Plugin PHP Tool Integration (PTI) which provides integration of following features for Eclipse

Force Content-Type on files with no Extension in EclipsePDT?

☆樱花仙子☆ 提交于 2019-12-01 21:21:06
I use Eclipse-PDT to work on my PHP projects and find it inconvenient when Eclipse does not recognize my php files that have no extension. Our project contains many cli/bash-style php scripts that have no file-extension (for whatever reason). This results in no code-completion, highlighting, etc for these particular files. It treats them as plain-text. Is there a way I can mark these particular files as PHP to use the PDT features? If I remember correctly, you might be able to do something like this : right-click on the file in the Navigator panel -- or the equivalent you are using choose Open

How to increase content assist tooltip size in Eclipse / PDT

Deadly 提交于 2019-12-01 17:55:46
I'm using PDT with Eclipse and the Content Assist tooltips (e.g. for class method descriptions) are too small to be useful. Usually, only the first few words are visible. Is there a preference to increase the sizes of these? I have plenty of screen real estate, so I want to make them much larger. Thanks Edit: Maybe I'm using the wrong terminology -- I'm talking about the PHPDoc-style tooltips. Here's a screenshot: Edit 2: Screenshot no longer available. You should be able to simply grab the pop-up at the lower right corner and drag it larger. It will keep that size the next time it opens (at

How to increase content assist tooltip size in Eclipse / PDT

只谈情不闲聊 提交于 2019-12-01 17:11:02
问题 I'm using PDT with Eclipse and the Content Assist tooltips (e.g. for class method descriptions) are too small to be useful. Usually, only the first few words are visible. Is there a preference to increase the sizes of these? I have plenty of screen real estate, so I want to make them much larger. Thanks Edit: Maybe I'm using the wrong terminology -- I'm talking about the PHPDoc-style tooltips. Here's a screenshot: Edit 2: Screenshot no longer available. 回答1: You should be able to simply grab

Eclipse, XAMPP, xDebug - waiting for XDebug session - stays in 57%

牧云@^-^@ 提交于 2019-12-01 12:09:46
When I start debugging the process stays there at 57% and says "waiting for XDebug session". This is a duplicate post on StackOverFlow, but I tried all the answers, nothing worked. It was working fine until before two days. I don't know what went wrong. Having used Eclipse to launch xdebug sessions in Firefox for ever now, all of a sudden 23/4/2013 it would not launch xdebug using Firefox. It gave me the launch 57% and hang problem. It was quite happy to launch xdebug sessions in IE/Chrome/Safari/Opera but not Firefox. The only thing I changed around this time was I upgrades my java runtime to

Using Eclipse PDT for debugging Ajax pages with concurrent requests

一世执手 提交于 2019-12-01 11:27:51
Once I asked this same question but now I can give a test case for it. The problem resides in debugging in Eclipse PDT when the page sends multiple requests to the server's dynamic pages. Consider a web page as follow: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <script src="link-to-jquery/jquery-1.7.2.min.js"></script> <script> $(document).ready(function() { var list = $("ol"); for (var i=0; i<20; i++) { list.append($('<li><img src="/img.php?'+i+'" /></li>')); } }); </script> </head> <body> <ol> </ol> </body> </html> In above page, JQuery

Using Eclipse PDT for debugging Ajax pages with concurrent requests

懵懂的女人 提交于 2019-12-01 08:29:08
问题 Once I asked this same question but now I can give a test case for it. The problem resides in debugging in Eclipse PDT when the page sends multiple requests to the server's dynamic pages. Consider a web page as follow: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <script src="link-to-jquery/jquery-1.7.2.min.js"></script> <script> $(document).ready(function() { var list = $("ol"); for (var i=0; i<20; i++) { list.append($('<li><img src="/img

How do I add the PHP libraries to my basic remote project in eclipse?

风格不统一 提交于 2019-12-01 07:36:24
I have a basic project that was created from a remote system using the eclipse tools to setup that connection. I right clicked on the folder on my remote system and chose create a new project. Now, I want to add PHP to the build path, but it is just a basic project. How do I quickly add those libraries with Eclipse PDT or Zend Studio installed? Not sure if this what you are looking for, but try Right click the project folder in the Explorer and click Open Project . Right click the project folder again. Find and click Configure from the Context Menu In the submenu find and click Add PHP Support