fork download
  1.  
  2. <?php
  3. $array = ['apple', 'banana', 'cherry'];
  4. print_r($array,0);
  5. // الناتج: Array ( [0] => apple [1] => banana [2] => cherry )
  6.  
  7. // الحصول على النتيجة كسلسلة نصية
  8. $output = print_r($array, 1);
  9. echo $output;
  10. Var_dump ($output) ;
  11.  
Success #stdin #stdout 0.04s 25972KB
stdin
Standard input is empty
stdout
Array
(
    [0] => apple
    [1] => banana
    [2] => cherry
)
Array
(
    [0] => apple
    [1] => banana
    [2] => cherry
)
string(63) "Array
(
    [0] => apple
    [1] => banana
    [2] => cherry
)
"