通过php搜索并替换jpg文件数据中的str

时间:2017-07-28 12:15:14

标签: php jpeg

我想要一种方法来搜索和替换PHP中的ttfDataTable文件中的字符串并重新保存它们!

Ttf:更改字体系列名称

1 个答案:

答案 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);

您可以根据需要查找和替换。