Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.59
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
psy /
psysh /
src /
Command /
Delete
Unzip
Name
Size
Permission
Date
Action
ListCommand
[ DIR ]
drwxr-xr-x
2019-12-06 14:19
TimeitCommand
[ DIR ]
drwxr-xr-x
2019-12-06 14:19
BufferCommand.php
2.17
KB
-rw-r--r--
2019-12-06 14:19
ClearCommand.php
1.03
KB
-rw-r--r--
2019-12-06 14:19
Command.php
7.47
KB
-rw-r--r--
2019-12-06 14:19
DocCommand.php
4.16
KB
-rw-r--r--
2019-12-06 14:19
DumpCommand.php
2.48
KB
-rw-r--r--
2019-12-06 14:19
EditCommand.php
5.58
KB
-rw-r--r--
2019-12-06 14:19
ExitCommand.php
1.06
KB
-rw-r--r--
2019-12-06 14:19
HelpCommand.php
2.71
KB
-rw-r--r--
2019-12-06 14:19
HistoryCommand.php
7.47
KB
-rw-r--r--
2019-12-06 14:19
ListCommand.php
9.69
KB
-rw-r--r--
2019-12-06 14:19
ParseCommand.php
4.91
KB
-rw-r--r--
2019-12-06 14:19
PsyVersionCommand.php
953
B
-rw-r--r--
2019-12-06 14:19
ReflectingCommand.php
9.41
KB
-rw-r--r--
2019-12-06 14:19
ShowCommand.php
9.26
KB
-rw-r--r--
2019-12-06 14:19
SudoCommand.php
3.68
KB
-rw-r--r--
2019-12-06 14:19
ThrowUpCommand.php
4.44
KB
-rw-r--r--
2019-12-06 14:19
TimeitCommand.php
5.23
KB
-rw-r--r--
2019-12-06 14:19
TraceCommand.php
5.03
KB
-rw-r--r--
2019-12-06 14:19
WhereamiCommand.php
4.06
KB
-rw-r--r--
2019-12-06 14:19
WtfCommand.php
3.58
KB
-rw-r--r--
2019-12-06 14:19
Save
Rename
<?php /* * This file is part of Psy Shell. * * (c) 2012-2018 Justin Hileman * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Psy\Command; use Psy\Input\CodeArgument; use Psy\VarDumper\Presenter; use Psy\VarDumper\PresenterAware; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; /** * Dump an object or primitive. * * This is like var_dump but *way* awesomer. */ class DumpCommand extends ReflectingCommand implements PresenterAware { private $presenter; /** * PresenterAware interface. * * @param Presenter $presenter */ public function setPresenter(Presenter $presenter) { $this->presenter = $presenter; } /** * {@inheritdoc} */ protected function configure() { $this ->setName('dump') ->setDefinition([ new CodeArgument('target', CodeArgument::REQUIRED, 'A target object or primitive to dump.'), new InputOption('depth', '', InputOption::VALUE_REQUIRED, 'Depth to parse.', 10), new InputOption('all', 'a', InputOption::VALUE_NONE, 'Include private and protected methods and properties.'), ]) ->setDescription('Dump an object or primitive.') ->setHelp( <<<'HELP' Dump an object or primitive. This is like var_dump but <strong>way</strong> awesomer. e.g. <return>>>> dump $_</return> <return>>>> dump $someVar</return> <return>>>> dump $stuff->getAll()</return> HELP ); } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output) { $depth = $input->getOption('depth'); $target = $this->resolveCode($input->getArgument('target')); $output->page($this->presenter->present($target, $depth, $input->getOption('all') ? Presenter::VERBOSE : 0)); if (\is_object($target)) { $this->setCommandScopeVariables(new \ReflectionObject($target)); } return 0; } /** * @deprecated Use `resolveCode` instead * * @param string $name * * @return mixed */ protected function resolveTarget($name) { @\trigger_error('`resolveTarget` is deprecated; use `resolveCode` instead.', E_USER_DEPRECATED); return $this->resolveCode($name); } }