Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:115188 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 21496 invoked from network); 28 Jun 2021 19:08:38 -0000 Received: from unknown (HELO localhost.localdomain) (76.75.200.58) by pb1.pair.com with SMTP; 28 Jun 2021 19:08:38 -0000 To: internals@lists.php.net Date: Mon, 28 Jun 2021 21:28:27 +0200 Message-ID: <9d6kdgthgqvc5a75ta99hkptqoe5soei3k@4ax.com> References: X-Newsreader: Forte Agent 3.3/32.846 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Posted-By: 62.251.31.78 Subject: Re: [RFC] Deprecations for PHP 8.1 From: phpdev@ehrhardt.nl (Jan Ehrhardt) Nikita Popov in php.internals (Mon, 22 Mar 2021 10:24:51 +0100): >Hi internals, > >It's time for another deprecation RFC: >https://wiki.php.net/rfc/deprecations_php_8_1 FWIW, a quick search returned these results. ADOdb still uses strftime() https://adodb.org/dokuwiki/doku.php 2 plugins of Matomo (formerly Piwik) still uses strftime in Login/PasswordResetter.php and RssWidget/RssRenderer.php The simplepie library still uses strftime: https://github.com/simplepie/simplepie/blob/717d9ea4bf1a8533d5a26128b7acc1598388ce66/library/SimplePie/Item.php#L882 Limesurvey still uses strftime, in the ADOdb functions and in the kcfinder functions: https://github.com/LimeSurvey/LimeSurvey/blob/6437c998731e1e79da24c394ef205444cfa75cdf/third_party/kcfinder/core/class/browser.php#L784 Drupal 7 uses strftime in the date module and in the views module: https://www.drupal.org/project/date See date/date_api/date_api_sql.inc https://www.drupal.org/project/views See views/includes/handlers.inc Drupal 8 uses strftime. Example: https://api.drupal.org/api/drupal/core!modules!views!src!Plugin!views!query!Sql.php/function/Sql%3A%3AgetDateFormat/8.2.x -- Jan