Advertisement
pusatdata

Cara Menampilkan File TXT di WP

Apr 26th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. Cara Menampilkan File TXT di WP menggunakan ID
  2.  
  3.  
  4. <?php
  5. $id = get_the_ID();
  6. echo file_get_contents( "http://example.com/files/$id.txt" );
  7. ?>
  8.  
  9.  
  10.  
  11.  
  12.  
  13. You can do it like below:-
  14.  
  15. echo file_get_contents( "http://example.com/files/$id.txt" );
  16. OR
  17.  
  18. echo file_get_contents( "http://example.com/files/$id".".txt" );
  19. OR
  20.  
  21. echo file_get_contents( "http://example.com/files/".$id.".txt" );
  22. Note:-
  23.  
  24. Reference:- What is the difference between single-quoted and double-quoted strings in PHP?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement