simple_html_dom
simple_html_dom copied to clipboard
error line104 unexpected '[' in simple_html_dom.php
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)) {