The conversion of the binary by the sprintf function

Source: Internet
Author: User
Tags sprintf
%d-Signed decimal number
$txt 1 = sprintf ("Signed decimal number%d", 12);
Var_dump ($txt 1);

%b-Binary number
$txt 1 = sprintf ("decimal 12 binary number%b", 12);
Var_dump ($txt 1);

%o-Eight binary number
$txt 2 = sprintf ("Decimal 12 octal is%o", 12);
Var_dump ($txt 2);

%x-16 binary number (lowercase letters)
$txt 3 = sprintf ("Hexadecimal of decimal 12 is%x", 12);
Var_dump ($txt 3);

%x-16 decimal digits (uppercase letters)
$txt 4 = sprintf ("Hexadecimal of decimal 12 is%x", 12);
Var_dump ($txt 4);

The conversion of the binary by the sprintf function

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.