Convert Excel column name correctly
[phpmyadmin/arisferyanto.git] / libraries / transformations / text_plain__longToIpv4.inc.php
blob7f9d6b887df84ef7b3609a13750492d09d5602a6
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * @package phpMyAdmin-Transformation
5 * @version $Id$
6 */
8 /**
9 * returns IPv4 address
11 * @see http://php.net/long2ip
13 function PMA_transformation_text_plain__longToIpv4($buffer, $options = array(), $meta = '')
15 if ($buffer < 0 || $buffer > 4294967295) {
16 return $buffer;
19 return long2ip($buffer);