0 added
0 removed
Original
2026-01-01
Modified
2026-02-26
1
<h2>Ответы</h2>
1
<h2>Ответы</h2>
2
<p>Для этого можно использовать функцию call_user_func():</p>
2
<p>Для этого можно использовать функцию call_user_func():</p>
3
<p><?php function firstFunction() { echo "This is the first function | "; } function secondFunction() { echo "This is the second function"; } function finalFunction() { call_user_func('firstFunction'); call_user_func('secondFunction'); } echo finalFunction(); // => This is the first function | This is the second function</p>
3
<p><?php function firstFunction() { echo "This is the first function | "; } function secondFunction() { echo "This is the second function"; } function finalFunction() { call_user_func('firstFunction'); call_user_func('secondFunction'); } echo finalFunction(); // => This is the first function | This is the second function</p>