0
HTMLXPATH - 保留空間用的getAttribute
<input type='text' name='title[]' value='Some word and another'>
PHP
$title = $xpath->query('//input')->item(0);
echo $title = $title->getAttribute('value')
結果
一些
我需要
一些字和另一
問題 出於某種原因,一切都第一空間被剝離出來後..