Skip to content

Instantly share code, notes, and snippets.

@Moln
Moln / file_line_replace.php
Last active August 29, 2015 14:14
文件内容替换, 锁文件方式
<?php
/**
* 文件行扫描, 按callback 替换
* @param string $file
* @param callable $findCallback
* @param bool $loop
*/
function file_line_replace($file, callable $findCallback, $loop = false)
{