从php中的方法获取值

时间:2013-11-10 20:57:15

标签: php methods return-value

我有一个关于获取方法价值的问题

custom_get_post_attachments(get_the_ID(), $__width, $__height, get_the_title())

此代码生成html代码(<img src="...".....>

如果我回显方法它将显示图片,我不需要显示。

我需要获取生成的html代码。如何在不显示图片的情况下进行操作?

谢谢

1 个答案:

答案 0 :(得分:0)

如果您不想评估HTML,则需要将其转义。

echo htmlentities(custom_get_post_attachments(get_the_ID(), $__width, $__height, get_the_title()));