Tengo un código en php que al intentar ejecutarlo me da el siguiente error:
Código PHP:
Parse error: syntax error, unexpected T_STRING in procesar.php on line 43
Código PHP:
htmlParser parser = new htmlParser ($codigoHTML);
Y el constructor de la función htmlParser es:
Código PHP:
function HtmlParser ($aHtmlText) {
$this->iHtmlText = $aHtmlText;
$this->iHtmlTextLength = strlen($aHtmlText);
$this->iNodeAttributes = array();
$this->setTextIndex (0);
$this->BOE_ARRAY = array (" ", "\t", "\r", "\n", "=" );
$this->B_ARRAY = array (" ", "\t", "\r", "\n" );
$this->BOS_ARRAY = array (" ", "\t", "\r", "\n", "/" );
}
Si le paso una cadena como parámetro al constructor, no entiendo por qué no lo acepta y da ese error.
¿Sabéis por qué me da ese error?
Muchas gracias