21 lines
322 B
PHP
21 lines
322 B
PHP
<?php
|
|
|
|
/*
|
|
* Reads in file contents and stores as a single string.
|
|
*/
|
|
function read_file_one_string($file_path)
|
|
{
|
|
$fs = fopen($file_path, 'r');
|
|
$string = fread($fs, filesize($file_path));
|
|
return $string;
|
|
}
|
|
|
|
function pretty_dump($arr)
|
|
{
|
|
return '
|
|
<pre>
|
|
' . print_r($arr) . '
|
|
</pre>
|
|
';
|
|
}
|