我为Drupal 8.6创建了一个模块。我有一个带有商店ID的变量$store_id
如何将$store_id
插入以下链接:
Url::fromUri('internal:/store/?????/cgv', $attributes)
例如,当$ store_id = 6时,我要获取:
internal:/store/6/cgv
作为Url::fromUri
答案 0 :(得分:0)
根据尼克的评论,只需将其更改为:
Url::fromUri("internal:/store/$store_id/cgv", $attributes)