Table of Contents
phpstorm不安装apache就可以本地测试PHP,phpstormapache
Home php教程 php手册 phpstorm不安装apache就可以本地测试PHP,phpstormapache

phpstorm不安装apache就可以本地测试PHP,phpstormapache

Jun 13, 2016 am 08:43 AM
phpstorm

phpstorm不安装apache就可以本地测试PHP,phpstormapache

最近再搞个PHP的项目,找了很多发现phpstorm这个非常小巧而且很好用,,顺便推荐一下idea开发android非常不错,这2个IDE都是一家公司的。
本文由智动软件(zdexe.com)原创,转载请保留版权
刚开始用,发现phpstorm可以像vs一样不配置安装开发环境就可以测试程序了,(因为我电脑上开发的东西太多,少安装一个服务器程序就少一个了)
好了不废话,下面教大家怎么弄吧(因为做完这些才觉得很有用才想起发教程,所以都没有链接,相关资源请大家自己百度,很多方法都是自己研究的网上没有):
第一步,先到PHP的官方网站下载PHP程序,然后解压好;
第二步,(如果不测试MYSQL这步可以略)到MYSQL的官方网站下载MYSQL的免费版,安装到电脑上,一般只安装server就行了,客户端可以下载个navicat;
第三步,这步很关键配置好就可以不装APACHE之类的直接测试PHP了,点File->Settings->PHP ,右边窗口找到Interpreter,然后点选目录按钮,定位到刚才PHP程序解压的目录(这里如果提示错误或者不能识别出PHP的版本,就重新去下载PHP程序,他分32位和64位2种,两种都试试),OK,,,确定就行了,回到代码编辑界面,右上角的浏览器图标点击可以直接在浏览器看到代码执行结果了。
是不是非常简单,,的确,,但重要的东西还在后面呢,,如果遇到找不到函数之类的,就按下面的操作,我就拿支持MYSQL的来举例吧,
如果遇到mysql_connect()不支持的提示,不用按提示到网上搜,你搜不到的,这个是phpstorm的问题。。
解决流程:
1、到PHP程序目录下把php.ini-development复制一份,还是放到原来的目录,然后重命名为php.ini,找到“;extension=php_mysql.dll”,把前面的“;”去了保存;
2、回到PHPSTORM点File->Settings->PHP ,右边窗口找到Interpreter,点右边的刷新按钮,你会发现他出错误提示了,我的提示找不到c:\php\php_mysql.dll,好吧,按这个位置把php程序下面的ext\php_mysql.dll 复制到c:\php\php_mysql.dll;
3、最后,回到PHPSTORM点File->Settings->PHP ,右边窗口找到Interpreter,点右边的刷新按钮,是不是又可以了,别急,打开任务管理器(alt+ctrl+del),把php-cgi.exe结束了,好了,去刷新你的代码页面吧,,这样就可以了。

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

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
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)

How to use Xdebug for PHP function debugging? How to use Xdebug for PHP function debugging? Apr 17, 2024 am 11:12 AM

By installing the XdebugPHP extension and enabling it, you can debug PHP functions using an Xdebug client such as PhpStorm or VSCode. Set breakpoints, run scripts using the IDE, enter debug mode to inspect variables, perform step-by-step debugging and view call stacks. In a practical case, you can set breakpoints on the sum function and use the debugger to view variables and execution flow to debug errors or optimize the code.

Code debugging methods for PHP functions Code debugging methods for PHP functions Apr 10, 2024 am 11:39 AM

Code debugging methods for PHP functions include: Built-in debugger: Use var_dump() or print_r() to output the contents of a variable or array. Logging: Use the error_log() function to record debugging messages to the specified file or system log. Breakpoint: Pause the program at a specific point in the code to examine variable values ​​and execution flow. Exception handling: Use try-catch blocks to handle exceptions thrown in functions and print exception messages and stack traces. Xdebug Debugger: Provides advanced debugging features such as tracking variable values, setting breakpoints and analyzing code coverage.

Best Practices for PHP Code Refactoring Best Practices for PHP Code Refactoring May 06, 2024 pm 05:09 PM

Answer: PHP code refactoring follows the principles of improving decoupling, readability, maintainability, and reducing complexity. Practice: Use namespaces to organize code. Decouple components with dependency injection containers. Refactor redundant code. Decompose large classes. Use modern coding style.

Development tools in PHP Development tools in PHP May 23, 2023 am 08:18 AM

PHP is a programming language widely used in web development. For PHP development tools, choosing a suitable tool can make the developer's work more efficient and convenient. In this article, we will discuss several common PHP development tools, including integrated development environments (IDEs), text editors, and debugging tools. 1. Integrated development environment (IDE) PhpStorm PhpStorm is a powerful PHP development environment developed by JetBrains. It not only supports PH

What are the common code editors for PHP programming? What are the common code editors for PHP programming? Jun 12, 2023 pm 12:30 PM

PHP is a popular server-side scripting language that is widely used for web development. In order to write efficient and streamlined PHP code, programmers need to use an excellent code editor. This article will introduce some common code editors in PHP programming. SublimeTextSublimeText is probably one of the most popular code editors. Its flexibility and ease of use make it the editor of choice for many developers. Key features of SublimeText include: High degree of customization

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Mastering these three comprehensive development tools is essential for PHP development Mastering these three comprehensive development tools is essential for PHP development Jan 13, 2024 pm 01:13 PM

Inventory of essential tools for PHP development: Mastering these three integrated development tools requires specific code examples. With the rapid development of the Internet, PHP, as a programming language widely used to develop websites and web applications, has attracted more and more developers. love. In order to improve development efficiency and quality, it is essential to use appropriate integrated development tools. In this article, we will take stock of the three necessary tools for PHP development and provide specific code examples for each tool to help developers better master and apply them. The first tool: PHPSt

Common PHP editors and development tools Common PHP editors and development tools Jun 23, 2023 am 09:36 AM

In current web development, PHP has become a very popular back-end programming language. However, when developing PHP, choosing high-quality editors and development tools can greatly improve development efficiency and code quality. This article will introduce some common PHP editors and development tools. PHPStormPHPStorm is an integrated development environment (IDE) launched by JetBrains. It provides a series of functions such as powerful PHP development support, code analysis, debugging, and automated testing, and supports

See all articles