/**
系统内置URL生成方法
@action string 支持两种格式生成 controllorName/actionName或actionName自动调用当前控制器
**/
function U($action=null,$field=null){
if(APP_URL=='/index.php'){
if(strpos($action,'/')!==FALSE){
//存在'/' 取消首字母大写限制
//$action = ucfirst($action);
$url = get_domain().'/'.$action;
}else if($action!=null){
$url = get_domain().'/'.APP_CONTROLLER.'/'.$action;
}else{
$url = get_domain().'/'.APP_CONTROLLER.'/'.APP_ACTION;
}
}else{
if(strpos($action,'/')!==FALSE){
//存在'/'
$action = ucfirst($action);
$url = get_domain().APP_URL.'/'.$action;
}else if($action!=null){
$url = get_domain().APP_URL.'/'.APP_CONTROLLER.'/'.$action;
}else{
$url = get_domain().APP_URL.'/'.APP_CONTROLLER.'/'.APP_ACTION;
}
}
文章来源地址https://www.toymoban.com/news/detail-434146.html
文章来源:https://www.toymoban.com/news/detail-434146.html
到了这里,关于php 系统内置URL生成方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!