从id symfony获取外表中的另一个字段

时间:2011-08-23 14:37:18

标签: symfony-1.4

我有两张桌子(feasy_marcacao和feasy_servico)。现在我有这个代码:

<td><?php echo $feasy_marcacao->getServicoId() ?></td>

但这会得到我的身份证号码,我想要该ID的描述。 这是我的架构:

FeasyServico:
  columns:
    descricao: { type: string(255), notnull: true, unique: true }

FeasyMarcacao:
  actAs: { Timestampable: ~ }
  columns:
    nome: { type: string(255), notnull: true }
    email: { type: string(255), notnull: true }
    contacto: { type: string(255), notnull: true }
    servico_id: { type: integer, notnull: true }
    dia: { type: date, notnull: true }
    hora: { type: time, notnull: true }
  relations:
    FeasyServico: { onDelete: CASCADE, local: servico_id, foreign: id }
希望我能很好地解释自己。谢谢你的时间。

1 个答案:

答案 0 :(得分:2)

直接前进:

echo $feasy_marcacao->getFeasyServico()->getDescricao();