URL、つまり www.example.com/apple/ に基づいて機能する単純な配列を持っています。これは、必要な場所にリンゴのテキストを配置しますが、別の固定テキストに貼り付けるオプションも必要ですブランド。
たとえば、$brand_to_use を使用して "apple" に配置し、$brandurl_to_use を使用して必要な場所に "apple.co.uk" を配置することができますが、これを配列に追加する方法がわかりませんオリジナルブランド。
ありがとう
$recognised_brands = array(
"apple",
"orange",
"pear",
// etc
);
$default_brand = $recognised_brands[0]; // defaults brand to apple
$brand_to_use = isset($_GET['brand']) && in_array($_GET['brand'], $recognised_brands)
? $_GET['brand']
: $default_brand;
疑似コード更新の例:
recognised brands =
apple
orange
pear
default brand = recognised brand 0
recognised brandurl =
apple = apple.co.uk
orange = orange.net
pear = pear.com
the brandurl is found from the recognised brands so that in the page content I can reference
brand which will show the text apple at certain places +
brandurl will show the correct brand url related to the brand ie apple.co.uk