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 equivalent of the select() system call on the given arrays of st..

Decoded Output download

<?php

/**
 * Runs the equivalent of the select() system call on the given
   arrays of streams with a timeout specified by tv_sec and tv_usec
 *
 * @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
 *             stream resources contained in the modified arrays, which may be zero if
 *             the timeout expires before anything interesting happens. On error false
 *             is returned and a warning raised (this can happen if the system call is
 *             interrupted by an incoming signal).
 */
function stream_select(&$read, &$write, &$except, $tv_sec, $tv_usec = false)
{
} ?>

Did this file decode correctly?

Original Code

<?php

/**
 * Runs the equivalent of the select() system call on the given
   arrays of streams with a timeout specified by tv_sec and tv_usec
 *
 * @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
 *             stream resources contained in the modified arrays, which may be zero if
 *             the timeout expires before anything interesting happens. On error false
 *             is returned and a warning raised (this can happen if the system call is
 *             interrupted by an incoming signal).
 */
function stream_select(&$read, &$write, &$except, $tv_sec, $tv_usec = false)
{
}

Function Calls

None

Variables

None

Stats

MD5 674c47c62e6e5493cb0d736a9f314f7f
Eval Count 0
Decode Time 73 ms