root/projects/textcubeapi/trunk/app/controllers/latex_renderer/lib.utils.php
@
580
| Revision 580, 233 bytes (checked in by daybreaker, 22 months ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | // Helper Functions |
| 3 | |
| 4 | function array_get($array, $key, $default = null) { |
| 5 | if (empty($array[$key])) |
| 6 | return $default; |
| 7 | return $array[$key]; |
| 8 | } |
| 9 | |
| 10 | function in($value, $array) { |
| 11 | return array_search($value, $array) !== FALSE; |
| 12 | } |
| 13 | |
| 14 | ?> |
Note: See TracBrowser
for help on using the browser.