本文介绍了将FCPATH转换为base_url()的最佳方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

将FCPATH格式的文件路径转换为base_url()格式的最佳方法是什么?

What is the best way to convert the path of a file in FCPATH format into the base_url() format?

推荐答案

$source_path = "/var/www/ci/htdocs/assets/images/";
echo str_replace(FCPATH, base_url(), $source_path);

输出:http://example.com/assets/images/

在我看来,简单起来会容易得多

Seems to me it would be much easier to just

echo base_url('assets/images/');

这篇关于将FCPATH转换为base_url()的最佳方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 17:30