>  기사  >  백엔드 개발  >  请问一段wordpress 语句的意思

请问一段wordpress 语句的意思

WBOY
WBOY원래의
2016-06-13 12:27:01967검색

请教一段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数组内有两个值

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.