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)
m (Quick Start)
Line 1: Line 1:
=Quick Start=
+
===Quick Start===
 
* '''Run PHP Scripts'''
 
* '''Run PHP Scripts'''
 
** Create a PHP file with the extension '''php'''
 
** Create a PHP file with the extension '''php'''

Revision as of 15:07, 20 August 2007

Quick Start

  • 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