您好我写了以下代码来访问文本框中的谷歌转换文本。但是转换后的文本在文本框中不起作用,但转换的文本与标签相同。
$agetSingleuser='महेश';
<?php echo $this->Form->create('user',array('class'=>'forms'));?>
<?php echo $this->Form->input('hindi', array('type' => 'text','id'=>'userhindi','value'=>$agetSingleuser, 'label' => 'महेश','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();?>
输出
答案 0 :(得分:1)
您需要使用原始解码字符串作为输入值。
$agetSingleuser = html_entity_decode('महेश');