doujie2356 2017-04-05 06:46
浏览 103
已采纳

Symfony Twig:从字符串中截断未定义的字符

I got a string from DB that return the address of an user, I want truncate the first part of this leaving only the City and Country.

Stored strig is like:

514 S. Magnolia St. - 32806 - Orlando - FL 

I want it to be:

Orlando - FL

How I can do using Twig? I got the datas fetching an object using Doctrine

public function profileAction($query)
{
    $user = $this->getDoctrine()
    ->getRepository('AppBundle:User')
    ->find($query);

    if (!$user) {
        throw $this->createNotFoundException(
            'User '. $user . ' not found.'
        );
    }

    return $this->render('profile/profile.html.twig', [
        'user_info'=>$user,
        ]);
}

I'm getting the values using regular Twig: {{ user_info.address }}

  • 写回答

1条回答 默认 最新

  • dopuz8728 2017-04-05 07:40
    关注

    If your format of the address is always the same you can rely on the split filter of Twig, which works the same way as explode in PHP

    {{ ('514 S. Magnolia St. - 32806 - Orlando - FL' | split('-', 3))[2] }}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码