Home Backend Development PHP Tutorial PHP自动生成后台导航网址的最佳方法_php技巧

PHP自动生成后台导航网址的最佳方法_php技巧

May 17, 2016 am 08:55 AM
Automatic generated

经常制作开发不同的网站的后台,写过很多种不同的后台导航写法。
最终积累了这种最写法,算是最好的吧。附上截图和代码如下(PHP+HTML)
PHP自动生成后台导航网址的最佳方法_php技巧 

复制代码 代码如下:


$linkArr = array(
'index.php' => '汇总首页',
'List.php' => '列表',
'Detail.php' => '详细',
'http://qzone.qq.com/' => 'QQ空间',
'http://qun.qzone.qq.com/group'=> '腾讯群首页',
'login.php?act=logout' => '安全退出',
);
?>



foreach($linkArr as $k => $v)
{
if(basename($k) == basename($_SERVER['PHP_SELF']))
{
$class = ' class="curr-ac"';
if(!defined('PAGE_TITLE')) define('PAGE_TITLE', $v);
} else {
$class = '';
}
echo '';
}
?>
<script> <BR>var PAGE_TITLE = <?php echo json_encode(defined('PAGE_TITLE') ? PAGE_TITLE : '');?>; <BR>if(PAGE_TITLE) document.title = PAGE_TITLE + ' ' + document.title; <BR>function Daohang(obj) <BR>{ <BR>var url = obj.getAttribute('_url'); <BR>if(/^https?:\/\/.+/i.test(url)) <BR>{ <BR>window.open(url,''); <BR>} else { <BR>window.location = url; <BR>} <BR>} <BR></script>

当然你也可以分开写。看自己如何应用。
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to automatically generate directory page numbers for wps directory How to automatically generate directory page numbers for wps directory Feb 27, 2024 pm 04:01 PM

WPS is a powerful office software that can help us complete various office tasks efficiently. Among them, automatically generating table of contents page numbers is a very practical function. It can greatly improve the work efficiency of users, so the editor of this website will bring you this article to introduce in detail how to use WPS to automatically generate directory page numbers. I hope it can help everyone in need. How to automatically generate table of contents page numbers for a wps directory. First, open the wps group document, enter the content of the table of contents to be generated in the blank space, and then select the styles of title 1, title 2, and title 3 in the start menu bar. 2. Then after setting it up, we click the [Reference] function. After clicking, in the reference toolbar, here we click [Directory]; 3. Finally click

How to automatically generate a directory. How to set the format of the automatically generated directory. How to automatically generate a directory. How to set the format of the automatically generated directory. Feb 22, 2024 pm 03:30 PM

Select the style of the catalog in Word, and it will be automatically generated after the operation is completed. Analysis 1. Go to Word on your computer and click to import. 2After entering, click on the file directory. 3 Then select the style of the directory. 4. After the operation is completed, you can see that the file directory is automatically generated. Supplement: The table of contents of the summary/notes article is automatically generated, including first-level headings, second-level headings and third-level headings, usually no more than third-level headings.

How to develop a WordPress plugin that automatically generates e-books How to develop a WordPress plugin that automatically generates e-books Sep 05, 2023 am 08:01 AM

How to develop a WordPress plug-in that automatically generates e-books. With the popularity of social media and e-readers, e-books have become one of the important ways for people to obtain and share knowledge. As a WordPress developer, you may be faced with the need to create and publish e-books. To simplify this process, we can develop a WordPress plugin that automatically generates e-books. This article will teach you how to develop such a plug-in and provide code examples for reference. Step 1: Create the basic file structure of the plugin first

How to use PHP for automatic generation of API documentation How to use PHP for automatic generation of API documentation Jun 06, 2023 am 08:01 AM

With the continuous development of Internet technology, API has become an important way to realize data interaction between applications. In the process of writing APIs, document writing and maintenance inevitably become an important issue. However, the traditional way of manually writing and maintaining API documentation is inefficient and error-prone, and is not suitable for projects with continuous iteration. Using PHP to automatically generate API documents can effectively improve efficiency and reduce errors. This article will introduce how to use PHP to automatically generate API documents. Manual

How to automatically generate equals() and hashCode() methods using Records class in Java 14 How to automatically generate equals() and hashCode() methods using Records class in Java 14 Jul 31, 2023 pm 01:52 PM

How to automatically generate equals() and hashCode() methods using Records class in Java14 In Java programming, we often need to write equals() and hashCode() methods for our classes. These two methods are very important when dealing with equality and hash codes of objects. To simplify this process, Java14 introduces a new Records class. The Records class provides a way to simplify writing equals() and hashCode

How to automatically generate document number in excel How to automatically generate document number in excel Mar 20, 2024 am 09:51 AM

The form that only adds data is the most basic form. Some document forms with fixed content will be more complicated. In the documents produced by Excel, some contents must automatically generate some data for the convenience of recording for continuity and authenticity. We often see The invoices and machine-printed invoice numbers are automatically consecutive to prevent tax evasion. How are these document numbers automatically generated? Let’s listen to the explanation below. For example, when generating the number of an outbound order, a combination of English letters and numbers is usually used. The English letter part of the number may use the capital form of the first letter of the document type. For example, the outbound document can be prefixed with CK. Method 1: Use the simplest rand function, which can generate a random number between 0-1. So our encoding

How to automatically generate duplicate code using code generation tools in Java? How to automatically generate duplicate code using code generation tools in Java? Aug 02, 2023 pm 12:00 PM

How to automatically generate duplicate code using code generation tools in Java? Introduction: During the development process, we often encounter situations where we need to write a large amount of repeated code. These duplicate codes not only affect development efficiency, but also easily cause errors. In order to solve this problem, we can use code generation tools in Java to automatically generate duplicate codes and improve development efficiency and code quality. 1. Selection of code generation tools There are many code generation tools to choose from in Java, such as MyBatisGenerator,

How to develop a WordPress plugin that automatically generates personnel lists How to develop a WordPress plugin that automatically generates personnel lists Sep 05, 2023 am 09:24 AM

How to develop a WordPress plug-in that automatically generates personnel lists. WordPress, as a powerful and flexible content management system, provides users with many opportunities to develop custom plug-ins. Among them, plug-ins that automatically generate personnel lists can help website administrators quickly and efficiently manage and display team member or customer lists. This article will introduce how to develop a WordPress plug-in that automatically generates personnel lists, and attach relevant code examples. First, we need to create a new WordPress

See all articles