Page MenuHomePhorge

Fix PHP 8.1 "strlen(null)" exception creating a Phriction doc without slug in Conduit
ClosedPublic

Authored by aklapper on Aug 17 2023, 15:43.
Tags
None
Referenced Files
F3800998: D25406.1745939076.diff
Mon, Apr 28, 15:04
F3780704: D25406.1745899716.diff
Mon, Apr 28, 04:08
F3777037: D25406.1745871072.diff
Sun, Apr 27, 20:11
F3763171: D25406.1745839019.diff
Sun, Apr 27, 11:16
F3763170: D25406.1745839018.diff
Sun, Apr 27, 11:16
F3763169: D25406.1745839017.diff
Sun, Apr 27, 11:16
F3762660: D25406.1745835303.diff
Sun, Apr 27, 10:15
F3757575: D25406.1745826719.diff
Sun, Apr 27, 07:51

Details

Summary

strlen() was used in Phabricator to check if a generic value is a non-empty string.
This behavior is deprecated since PHP 8.1. Phorge adopts phutil_nonempty_string() as a replacement.

Note: this may highlight other absurd input values that might be worth correcting
instead of just ignoring. If phutil_nonempty_string() throws an exception in your
instance, report it to Phorge to evaluate and fix that specific corner case.

EXCEPTION: (RuntimeException) strlen(): Passing null to parameter #1 ($string) of type string is deprecated at [<arcanist>/src/error/PhutilErrorHandler.php:261]
arcanist(head=master, ref.master=df6c315ace5f), phorge(head=master, ref.master=7cffe557ac24)
  #0 <#2> PhutilErrorHandler::handleError(integer, string, string, integer) called at [<phorge>/src/applications/phriction/conduit/PhrictionCreateConduitAPIMethod.php:28]

Closes T15614

Test Plan

Create a Phriction document without slug via Conduit. Get an EXCEPTION: (Exception) No such document. instead of a strlen() exception.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable