[lang-ref] ( read_file_as_text ) ( php )

<?php
public function testReadFileAsText(): void
{
	// file_get_contents($fname)
	$lines = ['test', 'test', 'test'];
	$text = implode("\n", $lines);
	$fname = $this->tmpDir . DIRECTORY_SEPARATOR . 'a.txt';

	file_put_contents($fname, $text);

	$r = file_get_contents($fname);

	$this->assertSame($text, $r);
}