如何使用PHP将ID插入字符串?

时间:2018-11-06 00:21:52

标签: php url drupal drupal-modules drupal-8

我为Drupal 8.6创建了一个模块。我有一个带有商店ID的变量$store_id

如何将$store_id插入以下链接:

Url::fromUri('internal:/store/?????/cgv', $attributes)

例如,当$ store_id = 6时,我要获取:

internal:/store/6/cgv作为Url::fromUri

的参数

1 个答案:

答案 0 :(得分:0)

根据尼克的评论,只需将其更改为:

Url::fromUri("internal:/store/$store_id/cgv", $attributes)