只加载一次配置文件



我正在编写脚本,将旧链接转换为seo友好URL。

index.php

require 'AltoRouter.php';
$router = new AltoRouter();
$router->setBasePath('/router');
$urls = [
    'index.php?option=com_index&task=articles&id=1',
    'index.php?option=com_index&task=articles&slug=1-article-title',
    'index.php?option=com_index&task=articles.category&cid=100-category1',
    'index.php?option=com_shop&task=products&slug=100-amazing-product',
];
foreach($urls as $i=>$url) {
    echo $router->getSefUrl($url);
}

AltoRouter.php

...
public function getSefUrl($url) {
        $url_clean  = str_replace('index.php?', '', $url);
        parse_str($url_clean, $output);
        $component  = empty($output['option'])  ? 'com_index'   : $output['option'];
        $task               = empty($output['task'])        ? 'index'           : $output['task'];
        $path           = 'components/'.$component.'/routes/routes.json';
        $data           = json_decode(file_get_contents($path));
        if (!empty($data)) {
            foreach($data as $route) {
                $this->map($route[0], $route[1], $route[2], $route[2]);
            }
        }
        $route_info = $this->findUrlFromRoutes($task);
        return empty($route_info) ? $url : $this->generate($route_info->task, $output);
    }
...

我的问题是:每次使用getSefUrl方法时,我都会从外部文件加载路由。可以吗?或者我可以优化上面的代码吗?如果是-如何?谢谢

您可以通过中断来避免循环中的多次获取和解码。

在AltoRouter.php 中

private $routes = array();
function getComponentRoutes($component)
{
    if(! isset($this->routes[$component])) {
        $path = 'components/'.$component.'/routes/routes.json';
        $this->routes[$component] = json_decode(file_get_contents($path));
    }
    return $this->routes[$component];
}

您可以将require_one替换为require_one,或者更好地使用自动加载:

您可以定义一个__autoload()函数,该函数会自动调用以防您试图使用尚未尚未定义。通过调用此函数,脚本引擎将获得在PHP因错误而失败之前,最后一次加载类的机会。

创建一个文件夹,并将所有需要的类放在此文件夹中:

function __autoload($class) {
    require_once "Classes" . $class . '.php';
}

相关内容

  • 没有找到相关文章

最新更新