如何在输入标签中显示双引号?

时间:2017-10-04 03:20:48

标签: html input

如何在输入标签中显示双引号?

我的$testi test "hello"

并像这样输入

<input name="test" type="text" value="<?PHP echo $test; ?>">

输入中的测试代码仅显示i test

如何在输入标记中显示i test "hello"

2 个答案:

答案 0 :(得分:1)

尝试使用htmlspecialchars或使用htmlentities

range .Page.Params.tabs

或者使用PHP echo ,你可以做到

<input name="test" type="text" value="<?php echo htmlspecialchars($test); ?>">

<input name="test" type="text" value="<?php echo htmlentities($test); ?>">

答案 1 :(得分:-1)

使用html_entity_decode因为您正在使用php,所以:

<input name="test" type="text" value="<?PHP echo html_entity_decode($test); ?>">