匹配 uri 字符串的最快方法
以下代码位于我网站的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不需要正则表达式,而且速度超级快。
No Regex needed and it is super fast.