多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# file\_get\_contents\_try() ## file\_get\_contents\_try() ``` <pre class="calibre11">``` file_get_contents_try($file, $times = 3) ``` ``` #### 【功能】 获取文件的内容,在并发的环境中容易读取失败,会自动重试。 #### 【参数】 ``` <pre class="calibre11">``` $file:文件路径 $times:重试次数 ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; $s = file_get_contents_try('1.txt'); echo $s; ?> ``` ```