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
F3342010: D25406.1743660270.diff
Wed, Apr 2, 06:04
F3331186: D25406.1743502449.diff
Mon, Mar 31, 10:14
F3331129: D25406.1743501199.diff
Mon, Mar 31, 09:53
F3330718: D25406.1743493065.diff
Mon, Mar 31, 07:37
F3329960: D25406.1743482523.diff
Mon, Mar 31, 04:42
F3329889: D25406.1743480886.diff
Mon, Mar 31, 04:14
F3329617: D25406.1743477812.diff
Mon, Mar 31, 03:23
F3328855: D25406.1743462987.diff
Sun, Mar 30, 23:16

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