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
4function array_get($array, $key, $default = null) {
5    if (empty($array[$key]))
6        return $default;
7    return $array[$key];
8}
9
10function in($value, $array) {
11    return array_search($value, $array) !== FALSE;
12}
13
14?>
Note: See TracBrowser for help on using the browser.