IIS 7.5 配置 php 5.4.22 链接 sql 2008(用PDO链接数据库)
最近在接触PHP这块,关于在wndows系统下的php配置,虽然网上已经很多文章,但有时候有些配置找起也麻烦,所以分享给大家。 一、php 5.4.22 下载地址http://windows.php.net/download/#php-5.4-nts-VC9-x86 选择版本:PHP 5.4 (5.4.22), VC9 x86 Thread Safe
最近在接触PHP这块,关于在wndows系统下的php配置,虽然网上已经很多文章,但有时候有些配置找起也麻烦,所以分享给大家。
一、php 5.4.22
下载地址 http://windows.php.net/download/#php-5.4-nts-VC9-x86
选择版本:PHP 5.4 (5.4.22),VC9 x86 Thread Safe (php-5.4.22-Win32-VC9-x86.zip)
解压后把 php.ini-development 文件名改成 php.ini
二、配置php.ini
short_open_tag = On 支持 ?>写法
date.timezone = PRC 或php程序最上面加 date_default_timezone_set("PRC"); 设置默认时区为北京时间
extension_dir = "ext" 指定php的扩展模块为ext目录
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE 争对一些信息数据不提示(如:警告
三、支持 sql 2008 数据库链接,去微软下载sqlsrv 3
下载链接 http://www.microsoft.com/en-us/download/details.aspx?id=20098
下载下来是exe,可以直接解压,把 php_pdo_sqlsrv_54_ts.dll 和 php_sqlsrv_54_ts.dll 放到ext目录里
extension=php_pdo_sqlsrv_54_ts.dll
extension=php_sqlsrv_54_ts.dll
注:ts为线程安全,nts为非线程安全,跟下载的php版本要一致
还有其它扩展库如: gd库、mbstring、sqlite、mysql等这些都在一起的,不多说了。
四、数据库链接字符串
<span>$db</span>= <span>new</span> PDO("sqlsrv:server=127.0.0.1;database=dbname","user1","123456");
五、配置PHP到IIS7.5
我用的是win7系统,首先安装IIS的FastCGI功能,进控制面板 > 打开程序和功能 > 点打开或关闭Windows功能
依次展开:Internet信息服务 > 万维网服务 > 应用程序开发功能,勾选CGI
安装好了后,打开IIS,可以在默认站点,打开处理映射程序
进去后,点击右键 添加模块映射
网站的目录具体怎么配置最简单了,具体不做说明,可以在网站目录里新建一个a.php,输入代码
<span>phpinfo</span>();
运行结果:

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

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

As a leader in cryptocurrency trading, Gate.io offers a wide range of trading pairs, derivatives and financial services. The Chinese version of the website Sesame Open Door Gate is convenient for Chinese users and provides the same functions as Gate.io, but it is more suitable for Chinese people's habits. Users can access the Gate.io exchange or Sesame Open Gate official website through the designated website. Please be sure to keep your account information carefully and only visit the official website to ensure safety.

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

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

As a digital asset exchange, Gate.io provides users with a convenient login process. To log in to Gate.io, visit its official website and click the "Login" button in the upper right corner. Then enter your email address or mobile phone number and password and perform two-factor authentication (2FA) verification as needed. After successfully logging in, you can manage your account balance, orders, and transaction activity through the Gate.io dashboard. To ensure account security, it is recommended to use a strong password and change it regularly, while enabling 2FA and taking care of phishing attempts.
