include 에서 return 되는거 아셨나요? > 십년전오늘

십년전오늘

10년전 추억의 책장을 넘기며

include 에서 return 되는거 아셨나요? 정보

include 에서 return 되는거 아셨나요?

본문

include 에서 return 문 사용가능한거 아셨나요?
난 왜 여태 몰랐지;;


----
return.php
<?php

$var = 'PHP';

return $var;

?>

noreturn.php
<?php

$var = 'PHP';

?>

testreturns.php
<?php

$foo = include 'return.php';

echo $foo; // prints 'PHP'

$bar = include 'noreturn.php';

echo $bar; // prints 1

?>
  • 복사

댓글 전체

© SIRSOFT
현재 페이지 제일 처음으로