Untitled
unknown
plain_text
4 years ago
365 B
10
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...