PHP:把服务器PHPInfo信息保存成一个文件
作为站长或者开发者,我们会特别地关心自己虚拟主机的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);//关闭连接 ?? } ?? ?>??
之前有提到一篇文章《PHP生成RSS文件》,提到了读取数据库并输出RSS的一个例子,大家也可以把phpinfo替换成那个输出RSS的那一坨代码,这样子可以实现把RSS保存成一个文件的目的。具体的用法呢:savePHPInfotoFile('sitemap.xml')即可!!
声明: 本文采用 BY-NC-SA 协议进行授权 | IT路人
转载请注明转自《PHP:把服务器PHPInfo信息保存成一个文件》

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

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

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

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

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

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

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

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

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
