Advertisement
kunkin1

Closures

Oct 25th, 2016
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.10 KB | None | 0 0
  1. <?php
  2. //contoh menampilkan hello word
  3. $text = function() {
  4.     echo 'Hello Word':
  5. };
  6. $text();
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement