When I call this function with the following comments, deprecation are trigged $tcPdf->writeHTMLCell(190, 70, null, null, $comment, 0, 0);
$comment = "<p><strong>sdfas </strong>df</p>";
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated
|
$postlen = strlen($dom[$key]['value']); |
$comment = "<p>A <strong>B</strong>, C.<br /><br />D<strong> E,</strong> F</p>";
Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated
|
if (isset($line_align_data) AND (($line_align_data[0] == ($key - 1)) OR (($line_align_data[0] == ($key - 2)) AND (isset($dom[($key - 1)])) AND (preg_match('/^([\s]+)$/', $dom[($key - 1)]['value']) > 0)))) { |
$comment = "<p>A <strong>B</strong>, C.<br /><br />D<strong> E,</strong> F</p>";
Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated
Could you have a look ?
When I call this function with the following comments, deprecation are trigged
$tcPdf->writeHTMLCell(190, 70, null, null, $comment, 0, 0);$comment = "<p><strong>sdfas </strong>df</p>";Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated
TCPDF/tcpdf.php
Line 18547 in f67b761
$comment = "<p>A <strong>B</strong>, C.<br /><br />D<strong> E,</strong> F</p>";Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated
TCPDF/tcpdf.php
Line 17695 in f67b761
$comment = "<p>A <strong>B</strong>, C.<br /><br />D<strong> E,</strong> F</p>";Deprecated: strlen(): Passing null to parameter #1 ($string) of type string is deprecated
TCPDF/tcpdf.php
Line 6395 in f67b761
Could you have a look ?