我有 50 个具有此功能的文件
public function __construct()
{ $this->createdAt = new DateTime();
$this->updatedAt = new DateTime();
$this->isActive = true;
$this->isDeleted = false;
}
现在有什么方法可以使用 sed 或 awk 或任何可能的方式在所有文件中的该函数中附加这些行
就像假设 file.php 是
public function __construct()
{
$this->age = 20;
}
我希望它应该变成这样
public function __construct()
{
$this->age = 20;
$this->createdAt = new DateTime();
$this->updatedAt = new DateTime();
$this->isActive = true;
$this->isDeleted = false;
}