The PHP function return value can return a bool value and return other values as well. This function can also determine the true and false

Source: Internet
Author: User
function luhn_checker($card_num,$sum){    ....    return ?;

That is, you can return a bool value and return a value such as $sum, and the function needs to determine whether it is true or false

if(luhn_checker($card_num)){ }

Reply content:

function luhn_checker($card_num,$sum){    ....    return ?;

That is, you can return a bool value and return a value such as $sum, and the function needs to determine whether it is true or false

if(luhn_checker($card_num)){ }

PHP can use arrays and lists to retain the word to return multiple values, but still need to judge a single line ...

function luhn_checker($card_num, $sum) {    return array(true, $sum);}list($ret, $sum) = luhn_checker($card_num, $num);if($ret) ...

Append: The kv array method mentioned in the question comment can also be solved by a list into multiple variables, the order of the Untied values is the same as the order of the definition.

A variety of types is best to use = = = to judge ...

  • Related Article

    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.