‘hello.py’
],
$attributes
);
$handle = popen( __DIR__ . ‘/’ . $data[‘file’], ‘r’ );
$read = ”;
while ( ! feof( $handle ) )
{
$read .= fread( $handle, 2096 );
}
pclose( $handle );
return $read;
}