gpt4 book ai didi

php - 在输入标签(文本字段)内执行 PHP Echo

转载 作者:太空宇宙 更新时间:2023-11-04 14:45:10 26 4
gpt4 key购买 nike

我在 php 脚本中使用函数来返回包含值的文本字段。该值是从变量中检索的。我怎样才能使这成为可能?

这是我尝试使用但没有用的代码。

function display_name()
{
return '<input type="text" maxlength="50" readonly="readonly" value=" '. $current_user->display_name .'" name="CreatedBy" style="width:100%">';
}

最佳答案

通过将变量作为参数传递给函数。

function display_name($current_user)
{
return '<input type="text" maxlength="50" readonly="readonly" value=" '. $current_user->display_name .'" name="CreatedBy" style="width:100%">';
}

然后像这样调用它

display_name($current_user);

关于php - 在输入标签(文本字段)内执行 PHP Echo,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9189653/

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