Check that the ISBN number is legal

Source: Internet
Author: User
Tags return
[Program Language] Php

[Source Source] Http://px.sklar.com
[Feature description] Check that the ISBN number entered by the user (which can or may not have hyphens) is legal.

The source code is as follows:

/*
* Check to-if the entered ISBN is valid and return
* True or False depending.
* I ' m not even going to try to claim the copyright for such
* A simple thing. Do what are with it.
* 8-) Keith Nunn, kapn@anglican.ca.
*/
function Checkisbn ($ISBN) {
$ISBN = Ereg_replace ("[^0-9x]", "", $ISBN);
$checkdigit = one-((a) substr ($ISBN 10,0,1) + 9 * substr ($ISBN 10,1,1) + 8 * substr ($ISBN 10,2,1) + 7 * substr ($ISBN 10,3 , 1) + 6 * substr ($ISBN 10,4,1) + 5 * substr ($ISBN 10,5,1) + 4 * substr ($ISBN 10,6,1) + 3 * substr ($ISBN 10,7,1) + 2 * SUBSTR ($ isbn10,8,1))% 11);
if ($checkdigit = =) $checkdigit = "X";
if ($checkdigit = one) $checkdigit = 0;
if ($checkdigit = = substr ($isbn 10,9,1)) {
return true;
}
else {
return false;
}
}
? >


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.