getID3::is_writable() –
You appear to be a bot. Output may be restricted
Description
Usage
$bool = getID3::is_writable( $filename );
Parameters
- $filename
- ( string ) required –
Returns
bool
Source
File name: wordpress/wp-includes/ID3/getid3.php
Lines:
1 to 8 of 8
public static function is_writable ($filename) { $ret = is_writable($filename); if (!$ret) { $perms = fileperms($filename); $ret = ($perms & 0x0080) || ($perms & 0x0010) || ($perms & 0x0002); } return $ret; }