gpt4 book ai didi

php - 如何在 PHP 回显中重写 PHP 回显?

转载 作者:行者123 更新时间:2023-12-04 16:44:49 24 4
gpt4 key购买 nike

我想放置这段代码:

<?php echo Sabai::_h($entity->getAuthor()->email);?>

这段代码的内部:

<?php echo get_avatar( 'email@example.com', 32 ); ?>

其中显示 email@example.com。有人可以写这个让我明白吗?

最佳答案

试试这个:

<?php echo get_avatar( Sabai::_h($entity->getAuthor()->email), 32 ); ?>

或者:

$email = Sabai::_h($entity->getAuthor()->email);
<?php echo get_avatar( $email, 32 ); ?>

关于php - 如何在 PHP 回显中重写 PHP 回显?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30587165/

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