gpt4 book ai didi

php - 在 PHP 中使用函数 vs include as "subroutine"

转载 作者:行者123 更新时间:2023-12-03 22:52:08 26 4
gpt4 key购买 nike

<分区>

推荐的方法是什么?

使用包括:

//子程序.php

echo '你好'.$a;

//用法.php

$a = 'foo';
include 'subroutine.php';

使用函数:

//子程序.php

function subroutine ($a)
{
echo 'hello '.$a
}

//用法.php

include 'subroutine.php';
$a = 'foo';
subroutine($a);

因为两者在技术上都可行,而且 PHP 中没有“子程序”,这与 ASP 不同。模拟子例程的最佳方法是什么?

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com