php 获取读取文件内容

时间:2023-03-08 20:11:45

/*
     * 获取文件内容
     *
     */
    public function getLocalFileContents($file)
    {
        $handle = @fopen($file, "rb");
        if ( !$handle )
        {
            return false;
        }
        else
        {
            $strContents = @fread( $handle, filesize( $file ) ) ;
            @fclose($handle);
            return $strContents;
        }
    }