├── lowerMACaddress.php └── README /lowerMACaddress.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | lowerMACaddress is a simple PHP-function to convert UPPERCASE MAC-Addresses to lowercase MAC-Addresses. 2 | Example: 0F:43:00:0B:CB:D3 to f:43:0:b:cb:d3 (0F -> f, 00 -> 0) 3 | 4 | echo lowerMAC("0F:43:00:0B:CB:D3"); 5 | f:43:0:b:cb:d3 6 | 7 | Mac OSX and iOS use this lower case format. 8 | 9 | License: 10 | http://www.gnu.org/licenses/lgpl.html --------------------------------------------------------------------------------