程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 檢查ISBN號碼是否合法

檢查ISBN號碼是否合法

編輯:關於PHP編程

[程序語言] PHP [源碼來源] http://px.sklar.com [功能描述] 檢查用戶輸入的ISBN號碼(可以帶也可以不帶連字符號)是否合法。 源代碼如下: <?php /* * Check to see if the entered isbn is valid and return * true or false depending. * Im not even going to try to claim copyright for such * a simple thing. Do what you will with it. * 8-) Keith Nunn, [email protected] */ 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; } } ?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved