shenshihai 2 år sedan
förälder
incheckning
b499584758
1 ändrade filer med 0 tillägg och 2 borttagningar
  1. 0 2
      src/Utility.php

+ 0 - 2
src/Utility.php

@@ -159,11 +159,9 @@ function filedirCopy(string $sourcePath, string $targetPath){
 //替换文件中的宏变量
 function replaceMacro(string $filePath,string $targetPath,array $macros){
 	$content = file_get_contents($filePath);
-	print($content.PHP_EOL);
 	foreach($macros as $key=>$value){
 		$content = str_replace($key,$value,$content);
 	}
-	print($content.PHP_EOL);
 	return file_put_contents($targetPath,$content);
 }