Vergleich inc/class_plugins.php - 1.8.11 - 1.8.14

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 60Zeile 60
			}

if(is_string($function[0]))

			}

if(is_string($function[0]))

			{ // Static class method


			{
// Static class method

				$method_representation = sprintf('%s::%s', $function[0], $function[1]);
}
elseif(is_object($function[0]))

				$method_representation = sprintf('%s::%s', $function[0], $function[1]);
}
elseif(is_object($function[0]))

			{ // Instance class method
$method_representation = sprintf('%s->%s', get_class($function[0]), $function[1]);


			{
// Instance class method
$method_representation = sprintf('%s->%s', spl_object_hash($function[0]), $function[1]);

			}
else

			}
else

			{ // Unknown array type


			{
// Unknown array type

				return false;
}


				return false;
}