PHP | String Functions
String Functions 在PHP | string这篇文章中,我们了解了PHP中可用的一些基本字符串操作函数。在本文中,我们将了解一些用于更改PHP中字符串的字符情况的字符串函数。下面是PH…
String Functions 在PHP | string这篇文章中,我们了解了PHP中可用的一些基本字符串操作函数。在本文中,我们将了解一些用于更改PHP中字符串的字符情况的字符串函数。下面是PH…
array_key_exists() Function array_key_exists()是PHP的内置函数,用于检查数组中是否存在特定的键或索引。如果在数组中找到指定的键,函数返回True,否则返…
hash_algos() Function hash_algos()函数是PHP中的一个内建函数,用于返回注册的散列算法列表。 语法
1 | array hash_algos( void ) |
…
我们必须在数组中找到从数组最小值到数组最大值范围内的数组中缺失的元素。 例子
1 2 3 4 5 6 7 8 | Input : arr[] = (1, 2, 3, 4, 6, 7, 8) Output : 5 The array minimum is 1 and maximum is 8. The missing element in range from 1 to 8 is 5. Input : arr[] = (10, 11, 14, 15) Output : 12, 13 |
通过观察元素之间的连续差异,可以在数组中迭代来解决这个问…
使用array_diff()从数组中删除元素 给定一个数组,我们必须使用PHP中的array_diff()函数从该数组中删除一个元素。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | Input : $arr = array(2, 8, 9, 7, 6, 5); $arr = array_diff($arr, array(9)); Output : Array ( [0] => 2 [1] => 8 [3] => 7 [4] => 6 [5] => 5 ) Input : $arr = array("shubham", "akshay", "vishal", "sweta"); $arr = array_diff($arr, array("akshay")); Output : Array ( [0] => shubham [2] => vishal [3] => sweta ) |
…
我们有两个字符串,我们需要检查字符串是否是Anagram。 例子
1 2 3 4 5 | Input : "anagram", "nagaram" Output : yes Input : "mat", "fat" Output : no |
我们使用以下内建函数来解决这个问题: count_chars():该…
给定一个数组,我们必须找到第二个最常见的元素。 例子
1 2 3 4 5 | Input : array(3, 3, 4, 5, 5, 5, 9, 8, 8, 8, 8, 8); Output : Second most frequent element is: 5 Input : array("www", "sky8g", "com"); Output : Second most frequent element is: sky8g |
上述问题可以用循环方法在其他语言中解决,但在PHP中我们内置了函数…
你会得到一个字符串数组。您必须将给定数组中出现的所有字符串更改为大写,无论当前是哪种情况。打印结果数组。 例子
1 2 3 4 5 | Input : arr[] = ("sky8g", "good", "it") Output : Array ([0]=>SKY8G [1]=>GOOD [2]=>IT) Input : arr[] = ("sky8g") Output : Array ([0]=>SKY8G) |
要解决这个问题,一种基…
array_merge()是PHP中的一个内置函数,用于将两个或多个数组合并为一个数组。此函数用于将两个或多个数组的元素或值合并到一个数组中。合并的方式是将一个数组的值追加到前一个数组的末尾。该函数接…
查找两个数组的交集 你得到两个数组,每个数组有n个元素。您必须找到这两个元素的所有公共元素,而不需要在php中使用任何循环,并打印得到的公共元素数组。 例子 [crayon-673f37dfcd991…
排序是什么? 排序是指根据数据项之间的某种线性关系,按字母顺序、数字顺序和递增或递减的方式对数据进行排序。排序大大提高了搜索效率。 PHP中数组的排序函数 sort() ——按升序对数组排序 …