Skip to content

Array and string offset access syntax with curly braces is deprecated #11

@gerardo1sanchez

Description

@gerardo1sanchez

$index += (ord($col{$i}) - 64) * pow(26, $colLen-$i-1);

Small sugestion to be compatible with PHP 8 (remove curly braces)

$index += (ord($col[$i]) - 64) * pow(26, $colLen-$i-1);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions