问问题
6045 次
3 回答
1
于 2013-08-27T17:06:52.073 回答
0
使用方法 html_entity_decode....
$file = 'wp.txt';
$regex = '/<textarea name="example" id="newcontent">(.*?)<\/textarea>/s';
if ( preg_match($regex, $page, $list) )
echo html_entity_decode($list[0]);
else
print "Error";
$file = 'wp.txt';
file_put_contents($file, $list, FILE_APPEND | LOCK_EX);
于 2013-08-27T17:07:07.280 回答
0
您将需要html_entitiy_decode函数。
于 2013-08-27T17:07:14.873 回答