0

このエラーを修正するにはどうすればよいですか:

Warning: Illegal string offset 'handler' in /home/***************/public_html/whois/phpwhois/whois.gtld.php on line 95

次のコードで:

function parse($data, $query)
{
$this->Query = array();
$this->SUBVERSION = sprintf("%s-%s", $query["handler"], $this->HANDLER_VERSION);
$this->result = generic_parser_b($data["rawdata"], $this->REG_FIELDS, 'dmy');
4

1 に答える 1

0

$query が文字列であるかどうかを確認してください。文字列である場合、コードは機能しません。$enquiry を配列として渡すか、例外を発生させてください。

于 2013-07-31T13:02:31.663 に答える