T1703271431

This commit is contained in:
Leander
2017-03-27 14:31:49 +02:00
parent c863b15f39
commit 1a44cf57b9

View File

@@ -7,8 +7,8 @@
*/ */
$uid = $_GET['uid']; $uid = $_GET['uid'];
$length = ($_GET['length'] && gettype($_GET['length']) == 'integer') ? $_GET['length'] : 10; $length = ($_GET['length'] && gettype(+$_GET['length']) == 'integer') ? +$_GET['length'] : 10;
echo gettype(+$_GET['length']); echo gettype($length);
echo $length; echo $length;
?> ?>