Home > Backend Development > PHP Tutorial > 如果好几个页面有同样一句话 应该怎么简化呢?

如果好几个页面有同样一句话 应该怎么简化呢?

WBOY
Release: 2016-06-06 20:17:04
Original
1464 people have browsed it

比如好几个页面都有下面这句话 这个有办法简化吗?

<code>if(isset($_COOKIE['isLogin'])){
  echo '<a href="#">'.$_COOKIE['username'].'</a>'.'<a href="logout.php">'.'退出'.'</a>';
}</code>
Copy after login
Copy after login

回复内容:

比如好几个页面都有下面这句话 这个有办法简化吗?

<code>if(isset($_COOKIE['isLogin'])){
  echo '<a href="#">'.$_COOKIE['username'].'</a>'.'<a href="logout.php">'.'退出'.'</a>';
}</code>
Copy after login
Copy after login

加到公共包含文件里去。如果每个文件都用到了,就直接写在公共包含文件头去,如果只有部分用到了就封装成一个函数,在需要的地方调用。

写在一个公共文件里面,要用的时候直接require进去就可以啦。
或者封装在成一个函数,直接调用。

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template