如何在输入标签中显示双引号?
我的$test
是i test "hello"
并像这样输入
<input name="test" type="text" value="<?PHP echo $test; ?>">
输入中的测试代码仅显示i test
如何在输入标记中显示i test "hello"
?
答案 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); ?>">