public Tar::listContents()
Lists all files in the archive.
array An array of file names relative to the root of the archive.
Overrides ArchiverInterface::listContents
public function listContents() { $files = array(); foreach ($this->tar->listContent() as $file_data) { $files[] = $file_data['filename']; } return $files; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Archiver!Tar.php/function/Tar::listContents/8.1.x