simple_html_dom icon indicating copy to clipboard operation
simple_html_dom copied to clipboard

error line104 unexpected '[' in simple_html_dom.php

Open WangNemo opened this issue 8 years ago • 0 comments

Parse error: syntax error, unexpected '[' in D:\xampp\htdocs\wztest\simple_html_dom-master\simple_html_dom-master\simple_html_dom.php on line 104

PHP Version 5.3.8

error line104: if (!empty($location_headers) && preg_match($pattern, array_values($location_headers)[0], $matches)) {

revised :

 $k = array_values($location_headers);
if (!empty($location_headers) && preg_match($pattern, $k[0], $matches)) {

WangNemo avatar Nov 29 '17 13:11 WangNemo