stronk7

Untitled

Apr 12th, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $ cat pp.php
  2. <?php
  3.  
  4. define('CLI_SCRIPT', true);
  5.  
  6. require('config.php');
  7.  
  8. var_dump($DB->get_record('config', ['id' => 2], 'id'));
  9.  
  10.  
  11. $ php pp.php
  12. object(stdClass)#74 (1) {
  13. ["id"]=>
  14. string(1) "2"
  15. }
Advertisement
Add Comment
Please, Sign In to add comment