我想要一种方法来搜索和替换PHP中的ttf
或DataTable
文件中的字符串并重新保存它们!
Ttf:更改字体系列名称
答案 0 :(得分:0)
<?php
$path = "/home/httpd/html/index.php";
$file = basename($path); // $file is set to "index.php"
$file = basename($path, ".php"); // $file is set to "index"
表示例如 我们假设您要将索引的文件名替换为ttf
echo str_replace("index","ttf",$file);
您可以根据需要查找和替换。