Home > Article > Operation and Maintenance > What is phpstudy probe
phpStudy probe has made some changes based on the original phpinfo. During the development process, we often need various configurations of the server, and the "probe" is used to detect the configuration. After installing phpStudy, enter: localhost in the browser. You can open the "probe"
1. View server parameters:
In this content, the "interpretation engine", port, and absolute path are more important. Different engines have different features. Generally, the default http port is: 80. The absolute path is the deployment path of your service.
2. My configuration is as follows:
Server domain name/IP address: localhost(127.0.0.1)
Server identification: Windows NT DESKTOP- PA1D1V7 6.2 build 9200 (Unknow Windows version Business Edition) i586
Server operating system Windows Kernel version: NT server interpretation engine Apache/2.4.10 (Win32) OpenSSL/0.9.8zb PHP/5.3.29
Server language zh-Hans-CN,zh-Hans;q=0.5 Server port 80
Server host name DESKTOP-PA1D1V7 Absolute path C:/www
Administrator email admin @phpStudy.net probe path C:/www/l.php
3. PHP compiled module detection:
Module is an important part of php, generally The configuration will load some common modules. I have encountered before that without curl template, the curl function of PHP cannot be used. phpstudy has functions to configure modules.
4. PHP related parameters:
These parameters are often used and need to be adjusted in actual development. For example:
Maximum limit of uploaded files (upload_max_filesize)
Script timeout (max_execution_time)
Maximum memory occupied by script (memory_limit):
Cookie support:
SMTP support:
Curl support:
5. Component support:
is a relatively independent functional block.
6. Database support:
Basically all web systems involve databases. So mysql is supported by default.
You can also test whether the mysql connection is normal.
mysql default address: localhost, port: 3306 Username: root Password: root
7. Function detection:
This function is very practical. For example, if you want to check whether the current environment supports a certain function, just enter the function name, such as: time. Click function detection to know whether this function can be used.
Note: Different computers may have some differences
Recommended tutorial:phpStudy quick entry video tutorial
The above is the detailed content of What is phpstudy probe. For more information, please follow other related articles on the PHP Chinese website!