PHP fileperms() Function
Complete PHP Filesystem Reference
Definition and Usage
The fileperms() function returns the permissions for a file or directory.
This function returns the permission as a number on success or
FALSE on failure.
Syntax
Parameter |
Description |
filename |
Required. Specifies the file to check |
Tips and Notes
Note: The result of this function are cached. Use clearstatcache() to
clear the cache.
Example 1
<?php
echo fileperms("test.txt");
?>
|
The output of the code above could be:
Example 2
Display permissions as an octal value:
<?php
echo substr(sprintf("%o",fileperms("test.txt")),-4);
?>
|
The output of the code above could be:
Complete PHP Filesystem Reference
The Altova MissionKit is a suite of intelligent XML tools, including:
XMLSpy® – industry-leading XML editor
- Support for all XML-based technologies
- Graphical editing views, powerful debuggers, code generation, & more
MapForce® – graphical data mapping tool
- Drag-and-drop data conversion with code generation
- Support for XML, DBs, EDI, Excel® 2007, text, Web services
StyleVision® – visual stylesheet designer
- Drag-and-drop stylesheet design for XML & databases
- Output to HTML, PDF, RTF, Word 2007, & more
And more…
Try before you buy with a free fully functional 30-day trial
Download today
|