EclipsePHP实时浏览设立方法
EclipsePHP实时浏览设置方法
我是新手,安装上Eclipse后,在编辑窗口里输入PHP源码,想要在PHP Browser里实时浏览程序,如果不配置一下EclipesPHP,将无法实现。
一、新建项目目录说明:
我新建一个叫“test1”的“PHP项目”和一个叫“test.php”的文件时,提示选择一个“安装目录”。
我选择的目录是:E:/home/m2006/bbs/test
解释一下上面目录的意思。
“home/”是我的IIS网站根目录(我没有用Apache建站,我的服务器搭建如下:WIN7_IIS + MySQL5.5+PHP5.3+Discuz8.3)。
“m2006/”是我的index.html所在的目录。
“bbs/”是我搭建的PHP支持的Discuz8.3论坛,index.php所在的目录。
“test/”项目目录搭建在“bbs/”下,正是考虑EclipsePHP需要MySQL、PHP的支持。
明白以上目录的意义,进入EclipsePHP下一步的属性配置。
二、Project Defaults配置
依次打开Eclipse的“窗口/选项/PHPeclipse Web Development/Project Defaults”,进入它的“Project Defaults”项目默认配置界面。如上图。
右框内的“Localhost”一项,当然是我的支持PHP的BBS目录,test目录是我新建test1项目的目录。
右框的“DocumentRoot”文档Root,是我初次安装EclipsePHP时,错误设置的安装路径“E:/PHP100.com”。如果这个路径不修改,每次在编程窗口里变动一下,就要自动弹出保存对话框,将会给我们以后的PHP编写带来很大的麻烦。如下图:
把“DocumentRoot”这个“文档根”路径修改如下图:
修改了以上两项,其实相当于修改了Localhost的全局变量,以后在所有的项目右键“属性”里就不用再改了。
注意一,“DocumentRoot”已经被修改成了支持PHP、MySQL运行环境的“bbs/”目录下的“test”了。“test”后面没有“/”否则实时浏览出错!
注意二,我在“Include Paths”里“新建...”了一个“E:\PHP10.COM”。实属无聊之举。这里的“\”与上面的“DocumentRoot”方向不一样哦!这些细节不注意,还会带来烦恼的。
三、PHP、MySQL的配置
1.PHP的配置:
依次打开Eclipse的“窗口/选项/PHPeclipse Web Development/PHP,找到“HTTP Query”,右框里找到“Localhost”,我修改了它“http://192.168.1.XXX”,我的内网IP。然后新建了一个“Localhost2”,URL:http://localhost。也属无聊。
接着下面就是这个扩展工具项。点开后,右边的框内如下 图:
第一项,启动PHP命令目录,是我的PHP.exe安装目录.
第二项,参数项,应该是安装EclipsePHP时候默认的。所以,我们初次安装Eclipse时,一定要小心设置安装参数。
下面就是Apache、MySQL的配置。我这里没有安装Apache,所以,只说MySQL配置。
上图就是我的MySQL安装路径。
四、浏览器的选择。
在“窗口/Web Browser”的右箭头里,选1、2都行,就是不能选 0 。
最后,写一个PHP:
如果还不能马上预览,“Ctrl+S ”!
上传个图片真麻烦,我个人相册里已经上传好了,却不能引用?
------解决方案--------------------
写的很详细 很不错
------解决方案--------------------
很不错,谢谢

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content

Arrays are linear data structures used to process data in programming. Sometimes when we are processing arrays we need to add new elements to the existing array. In this article, we will discuss several ways to add elements to the end of an array in PHP, with code examples, output, and time and space complexity analysis for each method. Here are the different ways to add elements to an array: Use square brackets [] In PHP, the way to add elements to the end of an array is to use square brackets []. This syntax only works in cases where we want to add only a single element. The following is the syntax: $array[] = value; Example
