i want to var dump a array as order به صورت منظم و خوانا
To dump an array in an organized and readable way, you can use the print_r function in PHP. Here is an example:
$array = ['apple', 'banana', 'orange'];
echo "<pre>";
print_r($array);
echo "</pre>";
This will display the array in a formatted and easy-to-read manner. The <pre> tags are used to preserve the formatting of the output.
原文地址: https://www.cveoy.top/t/topic/iwSP 著作权归作者所有。请勿转载和采集!