Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

--TEST-- Test sscanf() function : basic functionality - unsigned format --SKIPIF-- <?php i..

Decoded Output download

--TEST--
Test sscanf() function : basic functionality - unsigned format
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) {
    die("skip this test is for 32bit platform only");
}
?>
--FILE--
<?php

echo "*** Testing sscanf() : basic functionality - using unsigned format ***
";

$str = "-11 +11 11 -11.234 +11.234 11.234";
$format = "%u %u %u %u %u %u";

echo "
-- Try sccanf() WITHOUT optional args --
";
// extract details using short format
list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);

echo "
-- Try sccanf() WITH optional args --
";
// extract details using long  format
$res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);

?>
--EXPECT--
*** Testing sscanf() : basic functionality - using unsigned format ***

-- Try sccanf() WITHOUT optional args --
string(10) "4294967285"
int(11)
int(11)
string(10) "4294967285"
NULL
NULL

-- Try sccanf() WITH optional args --
int(4)
string(10) "4294967285"
int(11)
int(11)
string(10) "4294967285"
NULL
NULL

Did this file decode correctly?

Original Code

--TEST--
Test sscanf() function : basic functionality - unsigned format
--SKIPIF--
<?php
if (PHP_INT_SIZE != 4) {
    die("skip this test is for 32bit platform only");
}
?>
--FILE--
<?php

echo "*** Testing sscanf() : basic functionality - using unsigned format ***\n";

$str = "-11 +11 11 -11.234 +11.234 11.234";
$format = "%u %u %u %u %u %u";

echo "\n-- Try sccanf() WITHOUT optional args --\n";
// extract details using short format
list($arg1, $arg2, $arg3, $arg4, $arg5, $arg6) = sscanf($str, $format);
var_dump($arg1, $arg2, $arg3, $arg4, $arg5, $arg6);

echo "\n-- Try sccanf() WITH optional args --\n";
// extract details using long  format
$res = sscanf($str, $format, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);
var_dump($res, $arg1, $arg2, $arg3, $arg4, $arg5, $arg6);

?>
--EXPECT--
*** Testing sscanf() : basic functionality - using unsigned format ***

-- Try sccanf() WITHOUT optional args --
string(10) "4294967285"
int(11)
int(11)
string(10) "4294967285"
NULL
NULL

-- Try sccanf() WITH optional args --
int(4)
string(10) "4294967285"
int(11)
int(11)
string(10) "4294967285"
NULL
NULL

Function Calls

None

Variables

None

Stats

MD5 1b04820a3dfbf378c952c03ae3af6130
Eval Count 0
Decode Time 83 ms