Home >Backend Development >PHP Tutorial >PHP interview questions: little miscellaneous fish, php interview questions_PHP tutorial

PHP interview questions: little miscellaneous fish, php interview questions_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-12 09:07:32930browse

Little miscellaneous PHP interview questions, PHP interview questions

The questions here are relatively old, but they are often encountered when doing written examination questions, because these questions are relatively messy, It’s hard to classify the knowledge points in the test, so I’ll just put them 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)

<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"));

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1060689.htmlTechArticlePHP interview questions: Little miscellaneous fish, php interview questions The questions here are relatively old, but they are written test questions I often encounter this, because these questions are relatively messy and the knowledge points in the test are not easy to classify, so I put them together...
Statement:
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