欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php输出字符串方法总结

程序员文章站 2022-04-03 13:14:16
...
  1. $v = new test();
  2. print_r($v);
  3. var_dump($v);
  4. class test {
  5. public $num = 1;
  6. public $str = "222";
  7. public $bln = true;
  8. function test() {
  9. global $num;
  10. }
  11. }
复制代码

结果为: test object ( [num] => 1 [str] => 222 [bool] => 1 ) object(test)#1 (3) { ["num"]=> int(1) ["str"]=> string(3) "222" ["bool"]=> bool(true) }