diff options
Diffstat (limited to 'inc/geshi/php.php')
-rw-r--r-- | inc/geshi/php.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/inc/geshi/php.php b/inc/geshi/php.php index 734e770a7..3f6b60e7f 100644 --- a/inc/geshi/php.php +++ b/inc/geshi/php.php @@ -5,9 +5,9 @@ * Author: Nigel McNie (oracle.shinoda@gmail.com) * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/) * Release Version: 1.0.6 - * CVS Revision Version: $Revision: 1.1 $ + * CVS Revision Version: $Revision: 1.2 $ * Date Started: 2004/06/20 - * Last Modified: $Date: 2005/01/29 01:48:39 $ + * Last Modified: $Date: 2005/06/13 22:28:47 $ * * PHP language file for GeSHi. * @@ -60,8 +60,9 @@ $language_data = array ( 'KEYWORDS' => array( 1 => array( 'include', 'require', 'include_once', 'require_once', - 'for', 'foreach', 'as', 'if', 'elseif', 'else', 'while', 'do', 'endwhile', 'endif', 'switch', 'case', 'endswitch', - 'return', 'break' + 'for', 'foreach', 'as', 'if', 'elseif', 'else', 'while', 'do', 'endwhile', + 'endif', 'switch', 'case', 'endswitch', + 'return', 'break', 'continue' ), 2 => array( 'null', '__LINE__', '__FILE__', @@ -254,7 +255,8 @@ $language_data = array ( 'apache_setenv','apache_response_headers','apache_request_headers','apache_note','apache_lookup_uri','apache_get_version', 'apache_child_terminate','aggregation_info','aggregate_properties_by_regexp','aggregate_properties_by_list','aggregate_properties','aggregate_methods_by_regexp', 'aggregate_methods_by_list','aggregate_methods','aggregate','addslashes','addcslashes','acosh', - 'acos','abs','_','echo', 'print', 'global', 'static', 'exit', 'array', 'empty', 'eval', 'isset', 'unset', 'die' + 'acos','abs','_','echo', 'print', 'global', 'static', 'exit', 'array', 'empty', + 'eval', 'isset', 'unset', 'die', 'list' ) ), 'SYMBOLS' => array( |