search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Programming Dictionary

Online technical manual for service programmers
Popular searches:
Dictionary homepage Server PHP php stat() function
php stat() function Detailed instructions for use

php stat() function

Chinese translation Recent Updates: 2018-04-19 10:00:58

UK [stæt] US [stæt]

n.Star (unit of radioactive intensity, equal to 3.64×10-7 Curie)

php stat() function syntax

Function: Return information about the file.

Syntax: stat(file)

Parameters:

Parameter Description
file Required. Specifies the documents to be checked.

Description: Get the statistical information of the file specified by file. If file is a symbolic link, the statistics are about the connected file itself, not the symbolic link. If an error occurs, stat() returns false and issues a warning.

php stat() function example

<?php
$file = stat("./test.txt");
print_r($file);
?>
php stat() function