API17

Difference between revisions of "JSimpleCrypt:: hexToInt"

From Joomla! Documentation

(Layout updates)
m (preparing for archive only)
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
 
=={{JVer|11.1}} JSimpleCrypt::_hexToInt==
 
=={{JVer|11.1}} JSimpleCrypt::_hexToInt==
 
===Description===
 
===Description===
 +
HextoInt.
 +
  
  
{{Description:JSimpleCrypt::_hexToInt}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JSimpleCrypt::_hexToInt|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JSimpleCrypt::_hexToInt ($s, $i)
+
protected function _hexToInt (
 +
        $s
 +
        $i
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 20: Line 20:
 
|-
 
|-
 
|$s
 
|$s
|
+
|string
 
|
 
|
 
|
 
|
 
|-
 
|-
 
|$i
 
|$i
 +
|integer
 
|
 
|
|
+
|$i
|
 
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' integer
 +
* '''Defined''' on line 86 of libraries/joomla/utilities/simplecrypt.php
 +
* '''Since''' {{JVer|11.1 }}
 +
===See also===
 +
* {{JVer|11.1}} '''JSimpleCrypt::_hexToInt source code''' on [[jplatform:utilities/simplecrypt.php#cl-78|BitBucket]]
 +
* {{JVer|11.1}} Class [[API17:JSimpleCrypt|JSimpleCrypt]]
 +
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Utilities|Utilities]]
 +
* [[API17:JSimpleCrypt::_hexToInt|Other versions of JSimpleCrypt::_hexToInt]]
 +
 
  
===Defined in===
+
===User contributed notes===
libraries/joomla/utilities/simplecrypt.php (line 65)
+
=== Code Examples ===
* see source code in [[jplatform:utilities/simplecrypt.php#cl-65|BitBucket]]
 
===Referenced by===
 
===See also===
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JSimpleCrypt::_hexToInt|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
* [[JSimpleCrypt/11.1|JSimpleCrypt]]
 
* [[JSimpleCrypt::_hexToInt|Other versions of this method]]
 
{{SeeAlso:JSimpleCrypt::_hexToInt}}
 
===Examples===
 
<CodeExamplesForm />
 
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JSimpleCrypt::_hexToInt
 
category=JSimpleCrypt::_hexToInt
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JSimpleCrypt]][[Category:JSimpleCrypt::_hexToInt]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:42, 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.

Joomla 11.1 JSimpleCrypt::_hexToInt[edit]

Description[edit]

HextoInt.


protected function _hexToInt (
        $s
        $i
)
Parameter Type Default Description
$s string
$i integer $i
  • Returns integer
  • Defined on line 86 of libraries/joomla/utilities/simplecrypt.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]