Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace PhpOffice\PhpSpreadsheet\Worksheet; class Pane { private string $sqr..
Decoded Output download
<?php
namespace PhpOffice\PhpSpreadsheet\Worksheet;
class Pane
{
private string $sqref;
private string $activeCell;
private string $position;
public function __construct(string $position, string $sqref = '', string $activeCell = '')
{
$this->sqref = $sqref;
$this->activeCell = $activeCell;
$this->position = $position;
}
public function getPosition(): string
{
return $this->position;
}
public function getSqref(): string
{
return $this->sqref;
}
public function setSqref(string $sqref): self
{
$this->sqref = $sqref;
return $this;
}
public function getActiveCell(): string
{
return $this->activeCell;
}
public function setActiveCell(string $activeCell): self
{
$this->activeCell = $activeCell;
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace PhpOffice\PhpSpreadsheet\Worksheet;
class Pane
{
private string $sqref;
private string $activeCell;
private string $position;
public function __construct(string $position, string $sqref = '', string $activeCell = '')
{
$this->sqref = $sqref;
$this->activeCell = $activeCell;
$this->position = $position;
}
public function getPosition(): string
{
return $this->position;
}
public function getSqref(): string
{
return $this->sqref;
}
public function setSqref(string $sqref): self
{
$this->sqref = $sqref;
return $this;
}
public function getActiveCell(): string
{
return $this->activeCell;
}
public function setActiveCell(string $activeCell): self
{
$this->activeCell = $activeCell;
return $this;
}
}
Function Calls
None |
Stats
MD5 | 6b397284895d2882be2148bd83ac8b24 |
Eval Count | 0 |
Decode Time | 83 ms |