无法在cakephp文本框中阅读谷歌转换后的值

时间:2018-01-06 09:09:14

标签: cakephp

您好我写了以下代码来访问文本框中的谷歌转换文本。但是转换后的文本在文本框中不起作用,但转换的文本与标签相同。

$agetSingleuser='महेश';
<?php echo $this->Form->create('user',array('class'=>'forms'));?>
<?php echo $this->Form->input('hindi', array('type' => 'text','id'=>'userhindi','value'=>$agetSingleuser, 'label' => '&#2350;&#2361;&#2375;&#2358;','class'=>'form-control', 'div' => 'col-lg-4 col-xs-12'));?>
<?php echo $this->Form->submit('Save',array( 'div' => false,'class'=>'btn','name' => 'submit'));?>
<?php echo $this->Form->end();?>

输出

enter image description here

1 个答案:

答案 0 :(得分:1)

您需要使用原始解码字符串作为输入值。

$agetSingleuser = html_entity_decode('&#2350;&#2361;&#2375;&#2358;');