Difference between revisions of "JUtility::getHash"
From Joomla! Documentation
(Bulk upload by Doxiki2) |
m (preparing for archive only) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
Provides a secure hash based on a seed. | Provides a secure hash based on a seed. | ||
− | + | ||
− | + | ||
− | |||
− | |||
− | |||
<source lang="php"> | <source lang="php"> | ||
− | public static | + | public static function getHash ($seed) |
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
Line 25: | Line 22: | ||
|- | |- | ||
|} | |} | ||
− | + | * '''Returns''' string | |
− | string | + | * '''Defined''' on line 89 of libraries/joomla/utilities/utility.php |
− | + | * '''Referenced by''' | |
− | libraries/joomla/utilities/utility.php | + | ** [[API17:JApplication::__construct|JApplication::__construct]] |
− | |||
− | * [[JApplication | ||
===See also=== | ===See also=== | ||
− | + | * {{JVer|11.1}} '''JUtility::getHash source code''' on [[jplatform:utilities/utility.php#cl-81|BitBucket]] | |
− | + | * {{JVer|11.1}} Class [[API17:JUtility|JUtility]] | |
− | + | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Utilities|Utilities]] | |
− | * | + | * [[API17:JUtility::getHash|Other versions of JUtility::getHash]] |
− | * [[JUtility::getHash|Other versions of | + | |
− | + | ||
− | ===Examples=== | + | ===User contributed notes=== |
− | + | === Code Examples === | |
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JUtility::getHash | category=JUtility::getHash | ||
− | + | namespace=CodeExample | |
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
+ | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
− | <noinclude>[[Category: | + | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> |
Latest revision as of 22:56, 24 March 2017
The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
JUtility::getHash[edit]
Description[edit]
Provides a secure hash based on a seed.
public static function getHash ($seed)
Parameter | Type | Default | Description |
---|---|---|---|
$seed | string | Seed string. |
- Returns string
- Defined on line 89 of libraries/joomla/utilities/utility.php
- Referenced by
See also[edit]
JUtility::getHash source code on BitBucket
Class JUtility
Subpackage Utilities
- Other versions of JUtility::getHash
User contributed notes[edit]
Code Examples[edit]