예제가 포함된 PHP 배열 함수
PHP 배열, PHP 함수, PHP 문자열, PHP 배열, PHP in_array, PHP 배열을 문자열로, PHP 문자열을 배열로, 배열 함수, PHP array_merge, PHP array_splice, PHP array_key_exists, PHP array_search, PHP array_filter를 살펴보겠습니다.
PHP에서 배열 만들기
PHP에서 array() 함수는 배열을 생성하는 데 사용됩니다.
Read Also : Scrolla - jQuery Plugin for Reveal Animations
array();
PHP에는 세 가지 유형의 배열이 있습니다.
//Array declaration
$names = ['Techsolutionstuff', 'Tech', 'Techsolution', 'Stuff'];
//add to array
$names[] = 'Techsolutionstuff';
Array merge :
// Array merge
$array3 = array_merge($array1, $array2);
Read Also : How To Validate URL In PHP With Regex
Array to string :
// Array to string
$text = implode(', ', $names); // 'Techsolutionstuff, Tech, Techsolution, Stuff'
String to Array :
// String to Array
echo explode(',', $text); // ['Techsolutionstuff', 'Tech', 'Techsolution','Stuff']
Remove and preserve keys :
// Remove and preserve keys
unset($names[1]);
// It is now => [0 => 'Techsolutionstuff', 2 => 'Techsolution']
Read Also : Laravel 8 Mobile Number OTP Authentication using Firebase
Remove and change keys :
// Or remove and change keys
array_splice($names, 1, 1);
// It is now => [0 => 'Techsolutionstuff', 1 => 'Techsolution']
Number of items in a Array :
// Number of items in a Array
echo count($names);
Associative array :
//Associative array:
$person = ['age' => 25, 'gender' => 'men'];
Check if a specific key exists:
// Check if a specific key exist
echo array_key_exists('age', $person);
Read Also : Google Line Chart Example in Laravel 8
Array filter :
//Array filter (return a filtered array)
$filteredData = array_filter($people, function ($person) {
return $person->active;
});
Search all values:
// search all value in the 'name' column
$found_key = array_search('men', array_column($gender, 'name'));
// return 2
다음을 좋아할 수도 있습니다.
Reference
이 문제에 관하여(예제가 포함된 PHP 배열 함수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/techsolutionstuff/php-array-functions-with-example-i8o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)