Advertisement
clonemaster

template.php

Sep 17th, 2021
1,195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. #!/usr/bin/env php
  2. <?php
  3.  
  4. $short_options = "diw:";
  5.  
  6. $long_options  = [
  7.     "decode",
  8.     "ignore-garbage",
  9.     "wrap:",
  10.     "help",
  11.     "version",
  12. ];
  13.  
  14. $rest_index    = null;
  15.  
  16. $get_options   = getopt($short_options, $long_options, $rest_index);
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement