Changeset 30722
- Timestamp:
- 12/03/2014 10:10:07 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-base.php
r30703 r30722 788 788 * @since 2.5.0 789 789 * @abstract 790 * 790 791 * @param string $path Path to directory or file. 791 792 * @param bool $include_hidden Optional. Whether to include details of hidden ("." prefixed) files. … … 796 797 * Array of files. False if unable to list directory contents. 797 798 * 798 * @type string 'name'Name of the file/directory.799 * @type string 'perms'*nix representation of permissions.800 * @type int 'permsn'Octal representation of permissions.801 * @type string 'owner'Owner name or ID.802 * @type int 'size'Size of file in bytes.803 * @type int 'lastmodunix'Last modified unix timestamp.804 * @type mixed 'lastmod'Last modified month (3 letter) and day (without leading 0).805 * @type int 'time'Last modified time.806 * @type string 'type'Type of resource. 'f' for file, 'd' for directory.807 * @type mixed 'files'If a directory and $recursive is true, contains another array of files.799 * @type string $name Name of the file/directory. 800 * @type string $perms *nix representation of permissions. 801 * @type int $permsn Octal representation of permissions. 802 * @type string $owner Owner name or ID. 803 * @type int $size Size of file in bytes. 804 * @type int $lastmodunix Last modified unix timestamp. 805 * @type mixed $lastmod Last modified month (3 letter) and day (without leading 0). 806 * @type int $time Last modified time. 807 * @type string $type Type of resource. 'f' for file, 'd' for directory. 808 * @type mixed $files If a directory and $recursive is true, contains another array of files. 808 809 * } 809 810 */
Note: See TracChangeset
for help on using the changeset viewer.