Home > Backend Development > PHP Tutorial > PHP interview questions: Little miscellaneous fish

PHP interview questions: Little miscellaneous fish

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-29 09:13:41
Original
958 people have browsed it

The questions here are relatively old, but they are often encountered when doing written examination questions. Because these questions are messy and the knowledge points tested are not easy to classify, they are put together

<span>/*</span><span>*
* 题目:最少代码实现求3个数的最大值
* 三目运算符实现
</span><span>*/</span><span>function</span> getMax(<span>$a</span>,<span>$b</span>,<span>$c</span><span>){
        </span><span>return</span>  (<span>$a</span> > <span>$b</span>) ? ( (<span>$a</span> > <span>$c</span>) ? <span>$a</span> : <span>$c</span> ) : ( (<span>$b</span> > <span>$c</span>) ? <span>$b</span> : <span>$c</span><span> );
}
</span><span>echo</span> getMax(3,9,6)
Copy after login

<span>/*</span><span>*
* 题目:打印前一天的时间  格式:2015年10月15日 11:09:33
* strtotime函数使用 
* strtotime("now")  
* strtotime("-1 day");
* strtotime("+1 day");
* strtotime("+2 days");
* strtotime("+1 week");
* strtotime("+1 month");
* strtotime("+2 hours");
* strtotime("next Monday");
* strtotime("last Monday");
* strtotime("+1 week 3 days 7 hours 5 seconds");
</span><span>*/</span><span>date_default_timezone_set(</span>"PRC"<span>);
</span><span>echo</span><span>date</span>("Y-m-d H:i:s",<span>strtotime</span>("-1 day"));
Copy after login

The above has introduced the PHP interview questions, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

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