File: basic.php

package info (click to toggle)
codelite 12.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 95,112 kB
  • sloc: cpp: 424,040; ansic: 18,284; php: 9,569; lex: 4,186; yacc: 2,820; python: 2,294; sh: 312; makefile: 51; xml: 13
file content (55 lines) | stat: -rw-r--r-- 1,622 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php


Notice: Undefined index: internal in /home/eran/devl/codelite/codelitephp/php-plugin/doc-gen.php on line 85

/**
 * The full path and filename of the file with symlinks resolved. If used inside an include,
 *         the name of the included file is returned.
 * @link http://www.php.net/manual/en/language.constants.php
 */
define ('__FILE__', null);

/**
 * The current line number of the file.
 * @link http://www.php.net/manual/en/language.constants.php
 */
define ('__LINE__', null);

/**
 * The class name. The class name includes the namespace
 *         it was declared in (e.g. Foo\Bar).
 *         Note that as of PHP 5.4 __CLASS__ works also in traits. When used
 *         in a trait method, __CLASS__ is the name of the class the trait
 *         is used in.
 * @link http://www.php.net/manual/en/language.constants.php
 */
define ('__CLASS__', "");

/**
 * The function name.
 * @link http://www.php.net/manual/en/language.constants.php
 */
define ('__FUNCTION__', null);

/**
 * The class method name.
 * @link http://www.php.net/manual/en/language.constants.php
 */
define ('__METHOD__', null);

/**
 * The directory of the file.  If used inside an include,
 *         the directory of the included file is returned. This is equivalent
 *         to dirname(__FILE__). This directory name
 *         does not have a trailing slash unless it is the root directory.
 * @link http://www.php.net/manual/en/language.constants.php
 */
define ('__DIR__', null);

/**
 * The name of the current namespace.
 * @link http://www.php.net/manual/en/language.constants.php
 */
define ('__NAMESPACE__', null);
?>