芝麻web文件管理V1.00
编辑当前文件:/home4/randall/public_html/sl/wp-content/plugins/loco-translate/src/fs/Link.php
getPath() ); if( is_string($real) ){ if( is_dir($real) ){ $this->real = new Loco_fs_Directory($real); } else { $this->real = new Loco_fs_File($real); } } } /** * @return Loco_fs_File|null */ public function resolve(){ return $this->real; } /** * {@inheritdoc} */ public function isDirectory(){ return $this->real instanceof Loco_fs_Directory; } }