search
HomeBackend DevelopmentPHP TutorialCollection of some common functions in PHP_PHP tutorial
Collection of some common functions in PHP_PHP tutorialJul 13, 2016 am 09:52 AM
phpmainfunctionCommonly usedcollectarticletime

Collection of some common functions in PHP

This article mainly introduces the collection of some common functions in PHP. This article collects some time and date, output printing, and commonly used string functions. , commonly used array methods, friends in need can refer to it

 ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

//================================Time and date============ ===================

//y returns the last two digits of the year, the four-digit number of year Y, the number of month m, and the English month of M. d number of the month, D day of the week in English

$date=date("Y-m-d");

$date=date("Y-m-d H:i:s");//with hours, minutes and seconds

//include,include_once.require,require_once

//require("file.php") Before the PHP program is executed, the file specified by require will be read in. If an error occurs, it will be fatal.

//include("file.php") can be placed anywhere in the PHP program. The file specified by include will not be read until the PHP program is executed. If an error occurs,

will be prompted.

//================================Output printing============ ===================

//sprintf("%d","3.2") ;//Only formatting, returns the formatted string, no output.

//printf("%d","3.2") ;//Formatting and outputting

//print("3.2") ;//Only output

//echo "nihao","aa";//Can output multiple strings

//print_r(array("a","b","c"));//Display the key values ​​and elements of the array in sequence

//============================== Commonly used string functions========== =====================

//Get the length of the string, how many characters there are, spaces are also counted

$str=" sdaf sd ";

$len=strlen($str);

//Use the string in the first parameter to connect each element in the subsequent array and return a string.

$str=implode("-",array("a","b","c"));

//String splitting method, returns an array, uses the characters in the first parameter to split the following string, intercepts before, after, and between the specified characters. If the specified character is at the beginning or end, the beginning of the array returned Or the ending element is an empty string

//If it is not divided into strings, a null value will be returned to the corresponding element of the array. The last limit returns the length of the array. If there is no limit, it will continue to be divided.

$array=explode("a","asddad addsadassd dasdadfsdfasdaaa",4);

//print_r($array);

//Remove the leading spaces on the left side of the string and return

//If there is a second parameter, the leading spaces on the left will be removed instead of the string in the second parameter

$str=ltrim("a asd ","a");

//Remove spaces at the beginning of the right side of the string

$str=rtrim(" asd ");

//Remove the strings starting with the second parameter on both sides of the first string. If there is no second parameter, the leading spaces on both sides of the string will be removed by default

$str=trim(" sdsdfas ","a");

//How long (how many) characters are taken starting from the specified position in the first parameter of the string, and the first character position in the string is calculated from 0.

//If the second parameter is negative, the length of the string will be taken starting from the last number at the end of the string. The last character at the end counts -1, and the interception direction is always from left to right

$str=substr("abcdefgh",0,4);

//Replace the first parameter string of the third parameter with the second parameter string

$str=str_replace("a","","abcabcAbca");

//Same usage as str_replace, except case-insensitive

//$str=str_ireplace("a"," ","abcabcAbca");

//Returns a string in which the characters in the string in brackets are all uppercase

$str=strtoupper("sdaf");

//Change the first string in the brackets to uppercase and return

$str=ucfirst("asdf");

//Use echo, etc. to print the string in the brackets on the web page, and the string in the brackets will be printed out as it is, including the label character

$str=htmlentities("
");

//Return the number of times the second parameter string appears in the first string

$int=substr_count("abcdeabcdeablkabd","ab");

//Returns the position where the second string appears for the first time in the first string. The first character position is counted as 0

$int=strpos("asagaab","ab");

//Returns the position where the second string last appears in the first string, and the first character position is counted as 0

$int=strrpos("asagaabadfab","ab");

//Intercept and return the string string from the first occurrence of parameter two to the last character of parameter one from left to right in parameter one

$str=strstr("sdafsdgaababdsfgs","ab");

//Intercept and return the string string from the last occurrence of parameter two to the last character of parameter one from left to right in parameter one

$str=strrchr("sdafsdgaababdsfgs","ab");

//Add ""

before each character in parameter two before the same character in parameter one

$str=addcslashes("abcdefghijklmn","akd");

// Fill the string of parameter one to the length specified by parameter two (number of single characters). Parameter three is the specified filled string, do not write the default space

//Parameter four filling position, 0 is filled at the beginning of the left side of parameter one, 1 is filled at the beginning of the right side, and 2 is filled at the beginning of both sides. If not written,

will be padded at the beginning on the right by default.

$str=str_pad("abcdefgh",10,"at",0);

//Compare the Asker code values ​​of the corresponding characters in the two strings in turn. If the first pair is different, if the first pair is greater than the second parameter, 1 will be returned. Otherwise, -1 will be returned. If the two strings are exactly the same, 0 will be returned.

$int1=strcmp("b","a");

//Returns the formatted number format of the first parameter. The second parameter is to retain a few decimal places. The third parameter is to replace the decimal point with parameter three. The fourth parameter is what is used for each three digits of the integer part. Character segmentation

//If the last three parameters are not written, the decimal part will be removed by default, and the integer will be separated by commas every three digits. Parameter three and parameter four must exist at the same time

$str=number_format(1231233.1415,2,"d","a");

//============================== Commonly used array methods =========== ====================

$arr=array("k0"=>"a","k1"=>"b","k2"=>"c");

//Return the number of array elements

$int=count($arr);

//Determine whether there is a first parameter element in the array element of the second parameter

$bool=in_array("b",$arr);

//Returns a new array composed of all the key values ​​​​of the array in brackets. The original array does not change

$array=array_keys($arr);

//Determine whether the array of the second parameter contains the key value of the first parameter and return true or false

$bool=array_key_exists("k1",$arr);

//Returns a new array composed of all element values ​​in the original array. The key values ​​increase from 0 and the original array remains unchanged

$array=array_values($arr);

//Return the key value pointed to by the current array pointer

$key=key($arr);

//Return the element value pointed to by the current array pointer

$value=current($arr);

//Return the array consisting of the key value and element value of the element pointed by the current array pointer, and then push the pointer to the next position. Finally, the pointer points to an empty element and return empty

//There are four element values ​​corresponding to fixed key values ​​in the returned array, which are the key value and element value of the returned element, among which 0, 'key' key value corresponds to the returned element key value, 1, 'value' The key values ​​correspond to the returned element values ​​

$array=each($arr);

//First push the array pointer to the next bit, and then return the element value pointed to after the pointer moves

$value=next($arr);

// Push the array pointer to the previous position, and then return the element value pointed to after the pointer moves

$value=prev($arr);

//Reset the array pointer to point to the first element and return the element value

$value=reset($arr);

//Point the array pointer to the last element and return the last element value

$value=end($arr);

//Append the parameters after the first parameter as elements to the end of the first parameter array, the index is calculated from the smallest unused value, and the subsequent array length is returned

$int=array_push($arr,"d","dfsd");

//Add all parameters after the first parameter array as elements to the beginning of the first parameter array. The key value is re-accumulated from the first element with 0. The original non-numeric key value remains unchanged. The sorting position of the elements remains unchanged, and the array length after returning is

$int=array_unshift($arr,"t1","t2");

//Return to extract the last element value from the end of the array, and remove the last element from the original array

$value=array_pop($arr);

//array_pop On the contrary, extract and return the first element value of the array, and remove the first element from the original array

$value=array_shift($arr);

//Let the first parameter array reach the length of the second parameter value, add the third parameter as an element to the end of the first parameter array, the index is calculated from the smallest unused value and returned, the original array No change

$array1=array_pad($arr,10,"t10");

//Returns a new array with excess duplicate elements removed from the original array, and the original array remains unchanged

$array=array_unique($array1);

//Break the original array key values ​​and sort them by the Asker code value of the element values ​​from small to large, and the index will be recalculated from the number 0

$int=sort($array);

//Contrary to sort, reorder the element value in descending order of Asko code value, and recalculate the index from 0

$int=rsort($array);

//Returns an array in which each element value in the first parameter array is paid as a key value to the second parameter array in turn. The length of the two arrays must be the same, and the original array does not change

$array=array_combine(array("a","b","c","d","e"),$arr);

//Merge the two arrays and return the original array unchanged

$array=array_merge($arr,array("a","b","c"));

//In the first parameter array, intercept the array key value element starting from the second parameter value position to the third parameter value length and return it. The first element position of the array is counted from 0

$array=array_slice($arr,2,1);

//The interception function is the same as array_slice(), except that the intercepted part is removed from the original array

$array=array_splice($arr,2,1);

// Take the first parameter as the first element, increment the value of parameter three each time, and then store it in the array as an element after incrementing until the value reaches the value of parameter two and save it in the array. and return this array

//Parameter one, parameter two can be a number or a single character. A single character is calculated according to the ASCO code value. If the third parameter is not written, it will increment by 1 each time by default

$array=range(3,9,2);

//Rearrange the correspondence between the original array elements and the corresponding key values ​​randomly and return true or false

$bool=shuffle($arr);

//Calculate the sum of all numeric element values ​​in the array

$int=array_sum(array("a",2,"cssf"));

// Split an array into new array blocks. Each element of the new array is an array. The number of elements in each element of the new array is determined by parameter two

//The third parameter determines whether the key value of the element retains the original key value and does not need to be written. true means retaining, and the default is false not retaining

$array=array_chunk(array("a"=>"a","b","c","d","e","f","g","h"),2 ,true);

//json_encode() converts the array into a JSON format string and returns

$arr = array('k1'=>'val1','k2'=>'val2','k3'=>array('v3','v4'));

echo $encode_str = json_encode($arr);

//json_decode() converts the JSON format string into an object that can be coerced into an array and returns it. When the keys and values ​​in the JSON format string need to be enclosed in quotes, double quotes must be used

$decode_arr = (array)json_decode($encode_str);

var_dump($decode_arr);

?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1006578.htmlTechArticleCollection of some common functions in PHP This article mainly introduces the collection of some common functions in PHP. This article collects Some time and date, output printing, common string functions, common arrays...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.