我想从public function CreateUser最多删除文本//pfCreateUser。所以基本上我想删除函数CreateUser。
例如test.php,我有一个名为的文件,在该文件中我有一个这样的文本。
public function CreateUser(Request $request)
{
another code here, include a-zA-Z0-9 and special character...
} //pfCreateUser
public function CreateCompany(Request $request)
{
another code here, include a-zA-Z0-9 and special character...
} //pfCreateCompany
这是我尝试的
$a = "test.php";
$b = file_get_contents("test.php");
file_put_contents($a, preg_replace("#public function CreateUser.*//pfCreateUser#m", "", $b));
但它不起作用。
我希望文件在删除文本后是这样的
public function CreateCompany(Request $request)
{
another code here, include a-zA-Z0-9 and special character...
} //pfCreateCompany
叮当猫咪
万千封印
慕标琳琳