芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/www/wp-content/plugins/mailpoet/vendor-prefixed/symfony/finder/SplFileInfo.php
relativePath = $relativePath; $this->relativePathname = $relativePathname; } public function getRelativePath() { return $this->relativePath; } public function getRelativePathname() { return $this->relativePathname; } public function getFilenameWithoutExtension() : string { $filename = $this->getFilename(); return \pathinfo($filename, \PATHINFO_FILENAME); } public function getContents() { \set_error_handler(function ($type, $msg) use(&$error) { $error = $msg; }); $content = \file_get_contents($this->getPathname()); \restore_error_handler(); if (\false === $content) { throw new \RuntimeException($error); } return $content; } }