HTML
<input type='text' name='title[]' value='Some word and another'>
PHP
$title = $xpath->query('//input')->item(0);
echo $title = $title->getAttribute('value')
結果
いくつかの
私は取得する必要があります
いくつかの言葉と別の
問題 何らかの理由で、最初のスペースが削除された後のすべて。
一重引用符を使用できるように、必ず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