2012年6月16日
摘要: 1 #在需要查找的内容后一行新起一行插入内容 2 function insertAfterTarget($filePath, $insertCont, $target) 3 { 4 $result = null; 5 $fileCont = file_get_contents($filePath); 6 $targetIndex = strpos($fileCont, $target); #查找目标字符串的坐标 7 8 if ($targetIndex !== false) { 9 #找... 阅读全文
posted @ 2012-06-16 00:08 ZimZz 阅读(6359) 评论(0) 推荐(0) 编辑