Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. if (isset($config['default']) && (is_string($config['default']) || is_bool($config['default']) || is_numeric($config['default'])))
  2. {
  3. if (is_string($config['default']) && !is_numeric($config['default']))
  4. {
  5. $def .= ' DEFAULT "'.$config['default'].'"';
  6. }
  7. else
  8. {
  9. $def .= ' DEFAULT '.(int)$config['default'];
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement