-1
我有alt
和title
標記包含表中的數據,這些數據附加了我想要刪除的base_url
。當我這樣做時,alt
標籤顯示爲空。目前是代碼是什麼:Alt標記中的PHP base_url
<img title="<?php print_r(base_url().
$promo5['data'][0]->CarouselImageTitleAtribute);?>"
alt = "<?php print_r(base_url().$promo5['data']
[0]->CarouselImageAltAtribute);?>'/.
結果是這樣的:
<img title="https://www.example.com/Click here to read about
our custom products"
alt = "https://www.example.com/Custom colored products"/>
我需要刪除https://www.example.com/,僅保留值在表(CarouselImageAltAtribute)我一直在使用
嘗試<?php echo $promo5->CarouselImageAltAtribute; ?>
沒有運氣。
謝謝,我不是那麼熟悉PHP和感到沮喪與開發商拖着他的腳在這,所以我想我自己會修。但我看到了邏輯並感謝你的幫助;這是工作! :) –
只是想爲那些可能不知道的人添加base_url()是codeigniter可用的PHP函數,而不是內置的PHP函數;看到這裏:https://stackoverflow.com/questions/38122186/set-up-the-base-url-in-codeigniter/38122285#38122285 – slevy1
B. L.請標記答案,因爲你說它爲你工作。謝謝 –