Page MenuHomePhabricator

Update Figlet implementation to be PHP8 compatible
ClosedPublic

Authored by cspeckmim on Apr 25 2023, 2:53 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 23, 6:16 PM
Unknown Object (File)
Wed, Mar 20, 3:10 AM
Unknown Object (File)
Tue, Mar 19, 8:11 PM
Unknown Object (File)
Thu, Mar 14, 5:57 PM
Unknown Object (File)
Feb 19 2024, 8:56 PM
Unknown Object (File)
Feb 18 2024, 5:02 PM
Unknown Object (File)
Feb 13 2024, 8:45 PM
Unknown Object (File)
Feb 12 2024, 12:35 AM
Subscribers

Details

Summary

As of PHP ~v8 the zip_open and associated functions have been deprecated and
removed. The replacement is the ZipArchive API. This updates the figlet
implementation to use this API which has been present in PHP since 5.2.

Additionally in PHP 8 the use of squiggly brackets for indexing into arrays is
also deprecated. This updates to remove two uses of squiggly brackets and
replace with square brackets.

These two deprecations would result in being unable to load differential
revisions in which someone had commented using figlet remarkup.

Refs T13588

Test Plan

Applied these changes to an install and loaded a revision that had comments
where someone utilized figlet remarkup. The revision loaded properly and the
figlet comment rendered properly.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Apr 25 2023, 2:59 PM

(It would also probably be fine to just remove support for compressed figlet fonts, they're probably saving like 5KB?)

Oh whoops. I didn't realize figlet font file format wasn't compressed