Difference between var_dump,var_export & print_r

前端 未结 2 1948
再見小時候
再見小時候 2020-11-29 16:04

What is the difference between var_dump, var_export and print_r ?

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-29 16:26

    var_dump and var_export relate like this (from the manual)

    var_export() gets structured information about the given variable. It is similar to var_dump() with one exception: the returned representation is valid PHP code.

    They differ from print_r that var_dump exports more information, like the datatype and the size of the elements.

提交回复
热议问题