Home Backend Development PHP Tutorial EclipsePHP实时浏览设立方法

EclipsePHP实时浏览设立方法

Jun 13, 2016 am 10:42 AM
mysql nbsp php

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 ”! 
上传个图片真麻烦,我个人相册里已经上传好了,却不能引用?


------解决方案--------------------
写的很详细 很不错
------解决方案--------------------
很不错,谢谢

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The Future of PHP: Adaptations and Innovations The Future of PHP: Adaptations and Innovations Apr 11, 2025 am 12:01 AM

The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.

PHP vs. Python: Understanding the Differences PHP vs. Python: Understanding the Differences Apr 11, 2025 am 12:15 AM

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

MySQL: Simple Concepts for Easy Learning MySQL: Simple Concepts for Easy Learning Apr 10, 2025 am 09:29 AM

MySQL is an open source relational database management system. 1) Create database and tables: Use the CREATEDATABASE and CREATETABLE commands. 2) Basic operations: INSERT, UPDATE, DELETE and SELECT. 3) Advanced operations: JOIN, subquery and transaction processing. 4) Debugging skills: Check syntax, data type and permissions. 5) Optimization suggestions: Use indexes, avoid SELECT* and use transactions.

How to open phpmyadmin How to open phpmyadmin Apr 10, 2025 pm 10:51 PM

You can open phpMyAdmin through the following steps: 1. Log in to the website control panel; 2. Find and click the phpMyAdmin icon; 3. Enter MySQL credentials; 4. Click "Login".

MySQL and SQL: Essential Skills for Developers MySQL and SQL: Essential Skills for Developers Apr 10, 2025 am 09:30 AM

MySQL and SQL are essential skills for developers. 1.MySQL is an open source relational database management system, and SQL is the standard language used to manage and operate databases. 2.MySQL supports multiple storage engines through efficient data storage and retrieval functions, and SQL completes complex data operations through simple statements. 3. Examples of usage include basic queries and advanced queries, such as filtering and sorting by condition. 4. Common errors include syntax errors and performance issues, which can be optimized by checking SQL statements and using EXPLAIN commands. 5. Performance optimization techniques include using indexes, avoiding full table scanning, optimizing JOIN operations and improving code readability.

PHP: Is It Dying or Simply Adapting? PHP: Is It Dying or Simply Adapting? Apr 11, 2025 am 12:13 AM

PHP is not dying, but constantly adapting and evolving. 1) PHP has undergone multiple version iterations since 1994 to adapt to new technology trends. 2) It is currently widely used in e-commerce, content management systems and other fields. 3) PHP8 introduces JIT compiler and other functions to improve performance and modernization. 4) Use OPcache and follow PSR-12 standards to optimize performance and code quality.

How to use single threaded redis How to use single threaded redis Apr 10, 2025 pm 07:12 PM

Redis uses a single threaded architecture to provide high performance, simplicity, and consistency. It utilizes I/O multiplexing, event loops, non-blocking I/O, and shared memory to improve concurrency, but with limitations of concurrency limitations, single point of failure, and unsuitable for write-intensive workloads.

phpmyadmin connection mysql phpmyadmin connection mysql Apr 10, 2025 pm 10:57 PM

How to connect to MySQL using phpMyAdmin? The URL to access phpMyAdmin is usually http://localhost/phpmyadmin or http://[your server IP address]/phpmyadmin. Enter your MySQL username and password. Select the database you want to connect to. Click the "Connection" button to establish a connection.

See all articles