You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i got some warning php in fpdm.php line 550 $buffer=implode("\n",$this->pdf_entries);
sometime $this->pdf_entries is null it is not array
suggestion $buffer=implode("\n",!empty($this->pdf_entries) ? $this->pdf_entries : []);
another warning php in fpdm.php line 1627
Warning: count(): Parameter must be an array or an object that implements Countable in \fpdm\fpdm->parsePDFEntries() $CountLines = count($entries);
i suggest $CountLines = !empty($entries) ? count($entries) : 0;
The text was updated successfully, but these errors were encountered:
i got some warning php in fpdm.php line 550
$buffer=implode("\n",$this->pdf_entries);
sometime $this->pdf_entries is null it is not array
suggestion
$buffer=implode("\n",!empty($this->pdf_entries) ? $this->pdf_entries : []);
another warning php in fpdm.php line 1627
Warning: count(): Parameter must be an array or an object that implements Countable in \fpdm\fpdm->parsePDFEntries()
$CountLines = count($entries);
i suggest $CountLines = !empty($entries) ? count($entries) : 0;
The text was updated successfully, but these errors were encountered: