替换 PHP 字符串中的 HTML 编码符号 (™)

发布于 2024-12-06 15:53:37 字数 224 浏览 0 评论 0原文

我正在尝试从显示为页面标题的 PHP 字符串中删除编码的 TM 符号。该角色在标题中显示为 ,这显然很难看。不幸的是,内置编码函数似乎都无法处理大量编码字符的翻译,TM 也不是其中之一。我想做的是将“™”替换为“(tm)”。

在深入研究子字符串之前,我想看看是否有人知道更聪明的方法来做到这一点。我不知道符号在字符串中出现的位置(它根据页面标题而变化)。

任何想法非常感谢!

I'm trying to remove an encoded TM sign from a PHP string which is displayed as a a page title. The character displays as in the title, which is obviously ugly. Unfortunately none of the inbuilt encoding functions seem to deal with translation of very many encoded characters, and TM isn't one of them. What I want to do is replace '™' with '(tm)'.

Before I dig into substrings I wanted to see if anyone knew of a cleverer way to do this. I don't know the position the symbol appears in the string (it varies depending on the page title).

Any thoughts much appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晒暮凉 2024-12-13 15:53:38

这个怎么样:

<title><?php print str_replace("™", "™", $yourStr); ?></title>

实际上我不知道这是最好的方法,但至少它有效。

What about this:

<title><?php print str_replace("™", "™", $yourStr); ?></title>

Actually I don´t know is it the best way to do this, but at least it works.

梦在深巷 2024-12-13 15:53:38

据我了解,您希望将 PHP 字符串中的 '' 替换为 '(tm)' 。您只需使用 str_replace() 函数即可。

它看起来像这样

$titleString = "SOME TITLE - Trademark ™ My Company";
$titleStringReplaced = str_replace("™", "(tm)", $titleString);

As I understand it you want to replace the '' with '(tm)' in a string in PHP. You can just use the str_replace() function for that.

It would look something like this

$titleString = "SOME TITLE - Trademark ™ My Company";
$titleStringReplaced = str_replace("™", "(tm)", $titleString);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文