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
F2938997: D25406.1738026867.diff
Mon, Jan 27, 01:14
F2938996: D25406.1738026865.diff
Mon, Jan 27, 01:14
F2938868: D25406.1738024809.diff
Mon, Jan 27, 00:40
F2935962: D25406.1737890319.diff
Sat, Jan 25, 11:18
F2935001: D25406.1737812070.diff
Fri, Jan 24, 13:34
F2932332: D25406.1737733232.diff
Thu, Jan 23, 15:40
F2900663: D25406.1737271167.diff
Sat, Jan 18, 07:19
F2867519: D25406.1736647717.diff
Sat, Jan 11, 02:08

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