首页 > 代码库 > return

return

w

 

 

array(1) {
  [0]=>
  int(23)
}
well@well:/home/etc/project$ cat w.php
<?php
function wr(){
return [23];

}
var_dump(wr());
die();

 

return