PHP implements a read-only way to open a file _php tips

Source: Internet
Author: User

The example in this article describes how PHP implements a read-only open file. Share to everyone for your reference. The specific analysis is as follows:

PHP can open a file by fopen (), the second parameter is set to "R" means read-only open, function returns a file handle, other functions can use this file handle for different ways to read the file

<?php 
$file = fopen ("/tmp/file.txt", "R");
Print ("Type of File Handle:".) GetType ($file). "\ n");
Print ("The" the "the" the "the" File Handle: ".) Fgets ($file));
Fclose ($file); 
? >

The code above returns the following results

Type of File Handle:resource
The Handle:welcome to sharejs.com PHP tutorials

After the file read is complete, you need to use the fclose () function to close the file handle to free up resources

I hope this article will help you with your PHP program design.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.