Файловый менеджер - Редактировать - /var/www/html/administrator/components/com_akeebabackup/src/Mixin/GetPropertiesAwareTrait.php
Ðазад
<?php /** * @package akeebabackup * @copyright Copyright 2006-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\Component\AkeebaBackup\Administrator\Mixin; defined('_JEXEC') or die; trait GetPropertiesAwareTrait { /** * Convert the object to an array. * * This is a **FAR** more efficient way to do things than the crap used by Joomla!. PHP always adds a NULL byte in * front of private properties' names when casting an object to array. We exploit this quirk to filter out private * properties without using the slow-as-molasses PHP Reflection. * * @param bool $public * * @return array * * @since 9.7.0 */ public function getProperties($public = true) { $asArray = (array) $this; if (!$public) { return $asArray; } return array_filter($asArray, fn($x) => !empty($x) && !is_numeric($x) && ord(substr($x, 0, 1)) !== 0, ARRAY_FILTER_USE_KEY); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка