Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the classic interview questions in PHP?

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article is about PHP and how it works. Xiaobian thinks it is quite practical, so share it with everyone for reference. Let's follow Xiaobian and have a look.

For information only, the details are as follows:

1. Print out the previous day's time in PHP format is 2006-5-10 22:21:21(2 minutes)

$a = date("Y-m-d H:i:s", strtotime("-1 day"));print_r($a);

echo(),print(),print_r()

Echo and print are not a function, they are a language construct.

int print(string $arg), only one argument

echo arg1,arg2; can output multiple parameters, return void

echo and print can only print strings, not structures

print_r can print structure

such as

$arr = array("key"=>"value");print_r($arr);

3. Templates that can separate HTML and PHP (1 point)

smarty,phplib

What tools are used for version control? (1 point)

svn,git,cvs

5. How to achieve string inversion? (3 points)

English:

strrev($a)

In Chinese or other languages:

Chinese: GB2312, code is GB2312 coding

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report