Switched to style tags

This commit is contained in:
Andrew Robinson 2022-04-23 11:33:17 +10:00 committed by GitHub
parent 5309e6a002
commit d49f8996df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 7 deletions

View File

@ -484,13 +484,15 @@ class SimpleXLSXGen {
if ( strpos( $v, '<s>' ) !== false ) {
$F += self::F_STRIKE;
}
if ( strpos( $v, '<color rgb' ) !== false ) {
preg_match('/(?<=<color rgb=").*?(?=")/', $v, $cValue);
$C = $cValue[0];
}
if ( strpos( $v, '<fill rgb' ) !== false ) {
preg_match('/(?<=<fill rgb=").*?(?=")/', $v, $bValue);
$B = $bValue[0];
if ( strpos( $v, '<style' ) !== false ) {
preg_match('/(?<= color=").*?(?=")/', $v, $cValue);
if(!empty($cValue)){
$C = $cValue[0];
}
preg_match('/(?<= bgcolor=").*?(?=")/', $v, $bValue);
if(!empty($bValue)){
$B = $bValue[0];
}
}
if ( strpos( $v, '<left>' ) !== false ) {
$A += self::A_LEFT;