1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

tree-wide: Replace zval_is_true() by zend_is_true() (#20065)

* tree-wide: Replace `zval_is_true()` by `zend_is_true()`

The former is a direct alias of the latter which is much more often used.

* zend_operators: Remove `zval_is_true()`
This commit is contained in:
Tim Düsterhus
2025-10-07 20:44:32 +02:00
committed by GitHub
parent 7f5c3cd28d
commit 985d681501
13 changed files with 33 additions and 34 deletions

View File

@@ -20,6 +20,8 @@ PHP 8.6 INTERNALS UPGRADE NOTES
. The misnamed ZVAL_IS_NULL() has been removed. Use Z_ISNULL() instead.
. New zend_class_entry.ce_flags2 and zend_function.fn_flags2 fields were
added, given the primary flags were running out of bits.
. The zval_is_true() alias of zend_is_true() has been removed. Call
zend_is_true() directly instead.
========================
2. Build system changes