Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
PHP Function to Validate Bank Routing Numbers
Posted on 03/16/2010 at 04:10 pm by Kevin Wentworth
Viewed 22,363 times | 0 comments
I needed to validate that a Bank Routing Number was valid, much like the algorithms out there to check if a Credit Card number is valid. I did a little searching and didn't find a PHP function that would do the trick. I decided to write my own, based on this javascript function, and publish it for anyone who wants to use it:
Function to Validate Bank Routing Numbers:
- function checkRoutingNumber($routingNumber = 0) {
- return false;
- }
- $checkSum = 0;
- //loop through routingNumber character by character
- $checkSum += ($routingNumber[$i] * 3);
- $checkSum += ($routingNumber[$i+1] * 7);
- $checkSum += ($routingNumber[$i+2]);
- }
- if($checkSum != 0 and ($checkSum % 10) == 0) {
- return true;
- } else {
- return false;
- }
- }
Cheers,
-Kevin Wentworth
Tags for PHP Function to Validate Bank Routing Numbers
Php | Web Programming | Example
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!