Php ord functions and Chinese garbled solutions

Source: Internet
Author: User
Tags chr ord pack strlen

Php string function
Definition and usage
The ord () function returns the ascii value of the first character of the string.

Syntax
Ord (string) parameter description
String is required. The string from which the ascii value is to be obtained.

Echo ord ('I ');
Here, only 230 is returned. I saved the file in u8 and output it. Only 230 is returned, and 230 is converted to hex, which is e6. In fact, in u8, my code is e68891, in this case, you will understand. In fact, it only gets the first byte.

Echo chr (0xe6). chr (0x88). chr (0x91 );
In this example, I can output this Chinese character in u8. As you can see, this Chinese character is obtained after three chr times.

 

The code is as follows: Copy code

<? Php
// A character
$ Str = (pack ("a *", "China "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );
// H character
$ Str = (pack ("h *", "fffe "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );
// C characters
$ Str = (pack ("c *", "55", "56", "57 "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );

// I character short integer 32-bit 4-byte 64-bit 8-byte
$ Str = (pack ("I", "100 "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );

// The characters in seconds are short and shaping 2 bytes.
$ Str = (packs ("s", "100 "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );

// The length of the l character is 4 bytes.
$ Str = (packs ("l", "100 "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );

// F character single precision floating point 4 bytes
$ Str = (pack ("f", "100 "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );

// D double precision floating point 8 bytes
$ Str = (pack ("DS", "100 "));
Echo $ str, "=", strlen ($ str), "byte n ";
Getascill ($ str );

Function getascill ($ str)
{
$ Arr = str_split ($ str );
Foreach ($ arr as $ v)
{
Echo $ v, "=", ord ($ v), "n ";
}
Echo "=============== rnrn ";
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.