Lines Matching refs:offset
28 echo "--- testing offset not a long: array ---\n";
29 $offset = ['test'];
30 var_dump($offset);
31 var_dump(isset($nodes[$offset]), $nodes[$offset]->textContent);
33 echo "--- testing offset not a long: Reference to string ---\n";
35 $offset = &$something;
37 var_dump($offset);
38 var_dump(isset($nodes[$offset]), $nodes[$offset]->textContent);
40 echo "--- testing offset not a long: string ---\n";
41 $offset = 'test';
42 var_dump($offset);
43 var_dump(isset($nodes[$offset]), $nodes[$offset]->textContent);
45 echo "--- testing read_dimension with null offset ---\n";
68 --- testing offset not a long: array ---
77 --- testing offset not a long: Reference to string ---
83 --- testing offset not a long: string ---
89 --- testing read_dimension with null offset ---
90 Cannot access DOMNodeList without offset