|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
最近陆续的有人问我学习php的心得,现在整理为下面,希望可以对大家有些帮助。 [法式言语] PHP
[源码来历] http://px.sklar.com
[功效描写] 反省用户输出的ISBN号码(可以带也能够不带连字符号)是不是正当。
源代码以下:
<?php
/*
* Check to see if the entered isbn is valid and return
* true or false depending.
* I'm not even going to try to claim copyright for such
* a simple thing. Do what you will with it.
* 8-) Keith Nunn, kapn@anglican.ca
*/
function checkisbn($isbn) {
$isbn10 = ereg_replace("[^0-9X]","",$isbn);
$checkdigit = 11 - ( ( 10 * substr($isbn10,0,1) + 9 * substr($isbn10,1,1) + 8 * substr($isbn10,2,1) + 7 * substr($isbn10,3,1) + 6 * substr($isbn10,4,1) + 5 * substr($isbn10,5,1) + 4 * substr($isbn10,6,1) + 3 * substr($isbn10,7,1) + 2 * substr($isbn10,8,1) ) % 11);
if ( $checkdigit == 10 ) $checkdigit = "X";
if ( $checkdigit == 11 ) $checkdigit = 0;
if ( $checkdigit == substr($isbn10,9,1) ) {
return true;
}
else {
return false;
}
}
?>
毕业设计作品自己个人还是觉得比较满意的,尽管有些功能考虑的不全面,也没有很好的实现。 |
|