今天迁移一个SDK项目到新的机子上,发现项目无法跑起来,报500错误,通过分析,发现原来是file_get_contents函数再作怪,代码如下 public function __construct($fileName) { // 载入文件 $str = file_get_contents($this->fileName, false, null, -1, 2048); if (empty($str)) { throw new Exception\RuntimeException(sprint…