public function read($sFileName)<br />
{<br />
// Check if file exists and is readable<br />
if(!is_readable($sFileName)) {<br />
throw new Exception("Could not open " . $sFileName . " for reading! File does not exist, or it is not readable.");<br />
}<br />
<br />
// Get the file data<br />
$this->data = file_get_contents($sFileName);<br />
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn