﻿file = r'app\Exports\PanelTestExport.php'
with open(file, 'r', encoding='utf-8', errors='replace') as f:
    c = f.read()

idx = c.find('$sampleScores = []')
print(repr(c[idx:idx+1200]))
