From dca3007ad90d4722485c08fca61f76bf6c4871f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arda=20Ayd=C4=B1n?= Date: Mon, 8 Jun 2026 14:18:47 +0300 Subject: [PATCH] Update doc-en/language/functions.xml --- language/functions.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/functions.xml b/language/functions.xml index d97498f5a2d5..86a5f05200d3 100644 --- a/language/functions.xml +++ b/language/functions.xml @@ -89,9 +89,9 @@ if ($makefoo) { } /* Now we can safely call foo() - since $makefoo evaluated to true */ + since function_exists('foo') evaluated to true */ -if ($makefoo) foo(); +if (function_exists('foo')) foo(); function bar() {