主页
PHP
PHP 数组
tryphp_array_items
运行 ❯
×
更改方向
保存代码
更改主题
<?php // function example: function myFunction() { echo "This text comes from a function"; } // create array: $myArr = array("Volvo", 15, ["apples", "bananas"], myFunction); // calling the function from the array item: $myArr[3](); ?>
这段文字来自一个函数