What is the correct syntax of PHP base_convert() function?

73. What is the correct syntax of PHP base_convert() function?

  1. base_convert(number, from_base, to_base);
  2. base_convert(number, to_base, from_base);
  3. base_convert(number);
  4. base_convert(number, to_base);

Answer: A) base_convert(number, from_base, to_base);

Explanation:

The correct syntax of PHP base_convert() function is:

base_convert(number, from_base, to_base);

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.