Untitled

 avatar
unknown
plain_text
3 years ago
365 B
7
Indexable
$header = 'SubscriberID:';

$stdin = fopen('php://stdin', 'r');

while ( $stdin && !feof( $stdin ) )
{
    $line = fgets( $stdin );

    $tmp .= $line;

    if ( substr( $line, 0, strlen( $header ) ) === $header )
    {
        list( $report_subscriber_id, $code, $account_code ) = explode( ';', trim( substr( $line, strlen( $header ) ) ) );

        break;
    }
}
Editor is loading...