0

HTML

<input type='text' name='title[]' value='Some word and another'>

PHP

$title = $xpath->query('//input')->item(0); 
echo $title = $title->getAttribute('value')

结果

一些

我需要得到

一个字一个字

问题 由于某种原因,第一个空间之后的所有内容都被删除了..

4

1 回答 1

1

确保将其加载为 HTML,以便它允许您使用单引号:

$dom = new DOMDocument;
$dom->loadHTML("<input type='text' name='title[]' value='Some word and another'>");

$xpath = new DOMXpath($dom);

echo $xpath->query('//input')->item(0)->getAttribute('value');

在这里查看它的实际操作:http ://codepad.viper-7.com/pcs3or

于 2013-02-03T23:47:46.220 回答