Home > Backend Development > PHP Tutorial > 请问一段wordpress 语句的意思

请问一段wordpress 语句的意思

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 12:27:01
Original
1060 people have browsed it

请教一段wordpress 语句的意思
$templates = array();

if ( '' !== $name )
$templates[] = "header-{$name}.php";

$templates[] = 'header.php';

这段程序判断 $name 是否不空,如果不空则给$templates[]赋值"header-{$name}.php“

但又紧接着$templates[] = 'header.php'; 那么templates最终就是header.php。

那前面的判断有何作用?
------解决思路----------------------
$templates[];//是给数组添加一个值,不是赋值;
所以在$name != ''的时候,$templates数组内有两个值

Related labels:
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