PHP tutorial-php method of reading and outputting other files

巴扎黑
Release: 2016-11-08 10:04:00
Original
891 people have browsed it

PHP Tutorial - How to read and output other files in PHP

People often think of slow access and white page phenomenon. If it is a test environment, you can restart PHP's php-fpm process and find that it is fine again. After a while, A similar problem has arisen again. In this issue, we have invited a PHP expert from Brothers PHP Education www.lampbrother.net to share with you the method of reading and outputting other files in PHP. Thank you Tie Cheng for bringing us this enjoyable experience, friends. , are you ready for this technology journey?

ob_start();
iconv('utf-8','gb2312',readfile('1.html')); //Directly output text content
echo '


';

$data = file_get_contents('. /1.html',null,null,0,10);
var_dump($data);//Output string
echo '
';


$data = file('./1.html');
var_dump($data);//Output array
echo '
';

$stream = fopen('./1.html','r');
echo stream_get_contents($stream,12);//Output String
echo '
';

//fread() reads the file (safe for binary files) The file system pointer is a resource typically created by fopen().
$data = fopen('./1.html','rb');
$contents = fread($data,filesize('./1.html'));
echo $contents;//output string

Summary of the PHP tutorial on how to read and output other files. I hope everyone has to help.
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!