Core Function BinaryFromStr
From Sputnik Wiki
(Difference between revisions)
(→flag) |
|||
Line 19: | Line 19: | ||
Choices are: | Choices are: | ||
− | "ASCII" | + | "ASCII" |
− | + | ||
− | + | ||
"UNICODE" = Alias to UTF8 (or whatever Sputnik is using for Unicode strings) | "UNICODE" = Alias to UTF8 (or whatever Sputnik is using for Unicode strings) | ||
− | + | "UTF8" | |
"UTF7" | "UTF7" |
Revision as of 15:38, 26 September 2013
BinaryFromStr( <string>, <flag> )
Contents |
Description
Returns a new binary variable created from a strings raw bytes
Parameters
string
The string to use.
flag
Optional; Encoding to use.
Choices are:
"ASCII"
"UNICODE" = Alias to UTF8 (or whatever Sputnik is using for Unicode strings)
"UTF8"
"UTF7"
"UTF32"
Default: "ASCII"
Return Value
Returns a new binary variable created from a strings raw bytes
Remarks
None.
Example
ASCII Example
$binary = Pack("A*", "Hello World!"); $binStr = BinaryToStr($binary); echo "String Content: $binStr\n"; // Prints: // String Content: Hello World!