Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Framework to develop simple Eclipse plugin using PHP/UsingThePlugin"

(Quick Start)
(Quick Start)
Line 13: Line 13:
 
  $var = 46;
 
  $var = 46;
 
  echo $var;
 
  echo $var;
** Select in the editor the newly added lines
+
* Select in the editor the newly added lines
 
** Right click and select "Evaluate as PHP"
 
** Right click and select "Evaluate as PHP"
 +
** Expected output is
 +
Output is '46'
 +
Return is '1'

Revision as of 00:27, 12 July 2007

Quick Start

  • Add the project nature
    • Right click on a project and select "Add PhpPlugin Project Nature"
      • It does not always appear for opened projects. Close the project if that is the case and try again.
  • Run PHP Scripts
    • Create a PHP file with the extension php
      • Contents can be <? echo "Hello, World!" ?>
    • Right click on the file and select "Evaluate as PHP"
    • Expected output is
Output is 'Hello, World!'
Return is '1'
  • Add some more PHP to the script
$var = 46;
echo $var;
  • Select in the editor the newly added lines
    • Right click and select "Evaluate as PHP"
    • Expected output is
Output is '46'
Return is '1'

Back to the top