当公司名称中包含 ' 时,Linkedin Company insider 插件不起作用
Linkedin Company insider plugin does not work when company includes ' in it's name
我在这里尝试使用 LinkedIn Company Insider 插件:
https://developer.linkedin.com/plugins/company-insider-plugin-generator
但如果公司名称中有“'”,我会遇到问题。
例如:詹姆斯公司
我尝试对 ' 字符进行编码,但没有成功。
我如何在 ASCII 中对名称中间的 ' 字符进行编码,恰好在 '
我通过使用 php 中的 htmlentities() 函数解决了这个问题,如下所示:
htmlentities("James's Shop", ENT_QUOTES)
成功了!
我在这里尝试使用 LinkedIn Company Insider 插件:
https://developer.linkedin.com/plugins/company-insider-plugin-generator
但如果公司名称中有“'”,我会遇到问题。
例如:詹姆斯公司
我尝试对 ' 字符进行编码,但没有成功。
我如何在 ASCII 中对名称中间的 ' 字符进行编码,恰好在 '
我通过使用 php 中的 htmlentities() 函数解决了这个问题,如下所示:
htmlentities("James's Shop", ENT_QUOTES)
成功了!