16 lines
283 B
PHP
16 lines
283 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: leanderschmedemann
|
|
* Date: 27/03/2017
|
|
* Time: 14:07
|
|
*/
|
|
|
|
$uid = $_GET['uid'];
|
|
$length = ($_GET['length'] && gettype($_GET['length']) == 'integer') ? $_GET['length'] : 10;
|
|
echo gettype(+$_GET['length']);
|
|
echo $length;
|
|
|
|
?>
|
|
|