Gestionnaire de fichiers - Editer - /home/wwgoat/public_html/blog/wp-content/plugins/loco-translate/src/fs/Link.php
Arrière
<?php /** * */ class Loco_fs_Link extends Loco_fs_File { /** * @var Loco_fs_File */ private $real; /** * {@inheritdoc} */ public function __construct( $path ){ parent::__construct($path); $real = realpath( $this->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; } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Génération de la page: 0.01 |
proxy
|
phpinfo
|
Réglages