简体   繁体   中英

How to include the slash at the end of base_url Codeigniter

So I have a dynamic link and I wanted to write the dynamic link like this:

echo "<a href='".base_url('browse/category/').$all_categories[$j]['id']."'>";

However the link appears to be like this...

www.example.com/browse/category2

There is no slash between the category and the dynamic number (2). So i figured another way but i think it is a messy way like this:

base_url('browse/category')."/".$all_categories[$j]['id']

Is there a better way to do this??

Many thanks!

Try this:

echo base_url('browse/category/'.$all_categories[$j]['id']);

Output:

http://example.com/browse/category/2

echo base_url().'browse/category/'.$all_categories[$j]['id']);

This is another way

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM