我在 smarty 中有 foreach 循环:
{foreach from=$clients item=client}
<tr class="{cycle values="erow,"} elements">
<td class="tdcenter no-label">{$client->id}</td>
<td>{$client->name}</td>
<td>{$client->email}</td>
<td>{$client->phone}</td>
<td>{php} echo get_client_profit($client->name);{/php}</td>
</tr>
{/foreach}
我需要将 smarty 变量传递{$client->name}
给 php 函数get_client_profit
。我该怎么做?可能吗?