Home php教程 php手册 PHP:把服务器PHPInfo信息保存成一个文件

PHP:把服务器PHPInfo信息保存成一个文件

Jun 06, 2016 pm 08:09 PM
php keep information document server

作为站长或者开发者,我们会特别地关心自己虚拟主机的PHPinfo,因为那上面显示了PHP环境打开了什么库,某个重要函数是否得到支持。而这些呢,一般都是在线查看的:把一个探针文件放到服务器上面,然后在浏览器上面打开它的绝对路径查看相应的数据。这样子做

作为站长或者开发者,我们会特别地关心自己虚拟主机的PHPinfo,因为那上面显示了PHP环境打开了什么库,某个重要函数是否得到支持。而这些呢,一般都是在线查看的:把一个探针文件放到服务器上面,然后在浏览器上面打开它的绝对路径查看相应的数据。这样子做有点风险,因为探针的访问时不受限制的,如果被黑客盯上,那可不是什么好事。所以最好可以把这新PHPInfo相关信息保存成一个文件,然后下载到本地查看,就不用探针在线显示了。而这些文件是怎么生成的呢。我们一起来看看!!

<?php ??
function?savePHPInfotoFile($target_file){ ??
ob_start();//打开缓冲区 ??
phpinfo();//把phpinfo相关信息输出(会自动缓冲到缓冲区) ??
$info?=?ob_get_contents();//下来,我们获取缓冲区里面的数据 ??
ob_end_clean();//为了安全,清空缓冲 ??
$fp=fopen($target_file,"w+");//因为本地文件还没有?所以把目标文件名资源绑定到一个数据流上面?并以读写方式打开,将文件指针指向文件头并将文件大小截为零。如果文件不存在则尝试创建之。 ??
fwrite($fp,$info);//接下来把数据写入到文件里面 ??
fclose($fp);//关闭连接 ??
} ??
?>??
Copy after login

之前有提到一篇文章《PHP生成RSS文件》,提到了读取数据库并输出RSS的一个例子,大家也可以把phpinfo替换成那个输出RSS的那一坨代码,这样子可以实现把RSS保存成一个文件的目的。具体的用法呢:savePHPInfotoFile('sitemap.xml')即可!!

声明: 本文采用 BY-NC-SA 协议进行授权 | IT路人
转载请注明转自《PHP:把服务器PHPInfo信息保存成一个文件》

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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

See all articles