匹配 uri 字符串的最快方法

发布于 2024-12-02 17:12:31 字数 481 浏览 0 评论 0原文

以下代码位于我网站的 index.php 文件中,每次查询我网站上的页面时都会运行。这两个 requires 都执行各自的 404 错误页面,因此不必担心。在 php 中执行此操作的最高效的方法是什么?

$cache = $_SERVER['REQUEST_URI'];

if(preg_match('/^\/blog/',$cache) || preg_match('/^\/portfolio/',$cache)){
  define('WP_USE_THEMES', true);
  // Loads the WordPress Environment and Template
  require('./wordpress/wp-blog-header.php'); 
}else{
  // Load codeigniter
  require('./codeigniter/index.php');
}

The following code is in the index.php file of my site and runs every time a page on my website is queried. Both of these requires execute there own respective 404 error pages so dont worry about that. What is the most performance efficient way of doing this within php?

$cache = $_SERVER['REQUEST_URI'];

if(preg_match('/^\/blog/',$cache) || preg_match('/^\/portfolio/',$cache)){
  define('WP_USE_THEMES', true);
  // Loads the WordPress Environment and Template
  require('./wordpress/wp-blog-header.php'); 
}else{
  // Load codeigniter
  require('./codeigniter/index.php');
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无需解释 2024-12-09 17:12:31
$cache = $_SERVER['REQUEST_URI'];

if (0 === strpos($cache, '/blog/') ||
    0 === strpos($cache, '/portfolio/'))
{
    define('WP_USE_THEMES', true);
    require('./wordpress/wp-blog-header.php'); 
}
    else
{
    require('./codeigniter/index.php');
}

不需要正则表达式,而且速度超级快。

$cache = $_SERVER['REQUEST_URI'];

if (0 === strpos($cache, '/blog/') ||
    0 === strpos($cache, '/portfolio/'))
{
    define('WP_USE_THEMES', true);
    require('./wordpress/wp-blog-header.php'); 
}
    else
{
    require('./codeigniter/index.php');
}

No Regex needed and it is super fast.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文