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

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * Runs the select() system call on the given arrays of sockets with a specifie..

Decoded Output download

<?php

/**
 * Runs the select() system call on the given arrays of sockets with a specified timeout
 *
 * @phpstub
 *
 * @param array $read
 * @param array $write
 * @param array $except
 * @param int $tv_sec
 * @param int $tv_usec
 *
 * @return int On success  returns the number of
 *             socket resources contained in the modified arrays, which may be zero if
 *             the timeout expires before anything interesting happens. On error false
 *             is returned. The error code can be retrieved with
 *             .
 */
function socket_select(&$read, &$write, &$except, $tv_sec, $tv_usec = false)
{
} ?>

Did this file decode correctly?

Original Code

<?php

/**
 * Runs the select() system call on the given arrays of sockets with a specified timeout
 *
 * @phpstub
 *
 * @param array $read
 * @param array $write
 * @param array $except
 * @param int $tv_sec
 * @param int $tv_usec
 *
 * @return int On success  returns the number of
 *             socket resources contained in the modified arrays, which may be zero if
 *             the timeout expires before anything interesting happens. On error false
 *             is returned. The error code can be retrieved with
 *             .
 */
function socket_select(&$read, &$write, &$except, $tv_sec, $tv_usec = false)
{
}

Function Calls

None

Variables

None

Stats

MD5 3a7e1050a8127f09022f68c98c5f0a1c
Eval Count 0
Decode Time 99 ms