<?php file_get_contents( string $filename, bool $use_include_path = false, ?resource $context = null, int $offset = 0, ?int $length = null): string|false
<?php { $result = Fork::new() ->run( fn () => file_get_contents('https://stitcher.io/rss'), fn () => file_get_contents('https://sebastiandedeyne.com/index.xml'), fn () => file_get_contents('https://rubenvanassche.com/rss/'), );
<?php $result = Fork::new() ->run( fn () => file_get_contents('https://stitcher.io/rss'), fn () => file_get_contents('https://sebastiandedeyne.com/index.xml'), fn () => file_get_contents('https://rubenvanassche.com/rss/'), );
<?php ->run( fn () => file_get_contents('https://stitcher.io/rss'), fn () => file_get_contents('https://sebastiandedeyne.com/index.xml'), fn () => file_get_contents('https://rubenvanassche.com/rss/'), ); $this->assertCount(3, $result);