Write a PHP script to lower-case and upper-case, all elements in an array
- برمجة بي اتش بي
- 2021-09-09
- mhanasmh00489829403
الأجوبة
<?php
$colors = array( "Red", "Green", "Black", "White");
print_r($colors);
$lower_colors = array_map('strtolower', $colors);
print_r($lower_colors);
$upper_colors = array_map('strtoupper', $colors);
print_r($upper_colors);
?>
Sample Output:
Array
(
[0] => Red
[1] => Green
[2] => Black
[3] => White
)
Array
(
[0] => red
[1] => green
[2] => black
[3] => white
)
Array
(
[0] => RED
[1] => GREEN
[2] => BLACK
[3] => WHITE
)أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال