PageRenderTime 1754ms queryTime 661ms sortTime 79ms getByIdsTime 444ms findMatchingLines 189ms

100+ results results for 'php split repo:helmespc/zina2' (1754 ms)

Not the results you expected?
arr.php https://gitlab.com/ken3/bluSky | PHP | 602 lines
                    
1<?php defined('SYSPATH') or die('No direct script access.');
                    
2/**
                    
121
                    
122			// Split the keys by delimiter
                    
123			$keys = explode($delimiter, $path);
                    
209
                    
210		// Split the keys by delimiter
                    
211		$keys = explode($delimiter, $path);
                    
351	/**
                    
352	 * Recursive version of [array_map](http://php.net/array_map), applies one or more
                    
353	 * callbacks to all elements in an array, including sub-arrays.
                    
403	 * Merges one or more arrays recursively and preserves all keys.
                    
404	 * Note that this does not work the same as [array_merge_recursive](http://php.net/array_merge_recursive)!
                    
405	 *
                    
539				// param,param
                    
540				$params = preg_split('/(?<!\\\\),/', $match[2]);
                    
541				$params = str_replace('\,', ',', $params);
                    
                
rpcconsole.cpp https://gitlab.com/Quetzalcoatl/VekitaCoin | C++ | 433 lines
                    
2// Distributed under the MIT/X11 software license, see the accompanying
                    
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
                    
4
                    
55/**
                    
56 * Split shell command line into a list of arguments. Aims to emulate \c bash and friends.
                    
57 *
                    
66 * @param[out]   args        Parsed arguments will be appended to this list
                    
67 * @param[in]    strCommand  Command line to split
                    
68 */
                    
                
Selection.js https://github.com/StephanHoyer/DJsAdmin.git | JavaScript | 445 lines
                    
11     LGPL: http://www.gnu.org/licenses/lgpl.html
                    
12     EPL: http://www.eclipse.org/org/documents/epl-v10.php
                    
13     See the LICENSE file in the project's top-level directory for details.
                    
103        // get the selected part and split it by linebreaks
                    
104        var split = qx.util.StringSplit.split(selectedValue, /\r\n/);
                    
105
                    
108        // -> harmonize this to one char per linebreak
                    
109        return selectedValue.length - (split.length - 1);
                    
110      },
                    
113      {
                    
114        var selectedValue, selectedLength, split;
                    
115
                    
130        // get the selected part and split it by linebreaks
                    
131        split = qx.util.StringSplit.split(selectedValue, /\r\n/);
                    
132
                    
                
PhpTransliteration.php https://gitlab.com/leoplanxxi/dr7-web-buap-2016 | PHP | 288 lines
                    
24 * transliteration character tables are searched (see
                    
25 * PhpTransliteration::readGenericData()). If looking up the character in the
                    
26 * generic table results in a NULL value, or an illegal character is
                    
59   * character code. This is set up as needed in PhpTransliteration::replace()
                    
60   * by calling PhpTransliteration::readGenericData().
                    
61   *
                    
70   *   (optional) The directory where data files reside. If omitted, defaults
                    
71   *   to subdirectory 'data' underneath the directory where the class's PHP
                    
72   *   file resides.
                    
83
                    
84    foreach (preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY) as $character) {
                    
85      $code = self::ordUTF8($character);
                    
115    // Split into Unicode characters and transliterate each one.
                    
116    foreach (preg_split('//u', $string, 0, PREG_SPLIT_NO_EMPTY) as $character) {
                    
117      $code = self::ordUTF8($character);
                    
                
schema.php https://gitlab.com/alexprowars/bitrix | PHP | 414 lines
                    
1<?php
                    
2namespace Bitrix\Perfmon\Sql;
                    
8\Bitrix\Main\Loader::includeModule('perfmon');
                    
9$dir = new \Bitrix\Main\IO\Directory("/opt/php03.cp1251.www/mercurial/bitrix/modules");
                    
10foreach ($dir->getChildren()  as $child)
                    
53	 * @param string $str DDL text.
                    
54	 * @param string $delimiter How to split DDL into statements.
                    
55	 *
                    
61		$tokenizer = Tokenizer::createFromString($str);
                    
62		foreach ($this->splitStatements($tokenizer, $delimiter) as $statement)
                    
63		{
                    
68	/**
                    
69	 * Splits tokens array into bunch of individual DDL statements.
                    
70	 *
                    
71	 * @param Tokenizer $tokenizer Tokens container.
                    
72	 * @param string $delimiter How to split DDL into statements.
                    
73	 *
                    
                
Statement.php https://gitlab.com/axeltizon/magentoV1.9-demopoweraccess | PHP | 488 lines
                    
1<?php
                    
2/**
                    
83    /**
                    
84     * SQL string split into an array at placeholders.
                    
85     *
                    
87     */
                    
88    protected $_sqlSplit = array();
                    
89
                    
90    /**
                    
91     * Parameter placeholders in the SQL string by position in the split array.
                    
92     *
                    
139        // split into text and params
                    
140        $this->_sqlSplit = preg_split('/(\?|\:[a-zA-Z0-9_]+)/',
                    
141            $sql, -1, PREG_SPLIT_DELIM_CAPTURE|PREG_SPLIT_NO_EMPTY);
                    
150                     */
                    
151                    #require_once 'Zend/Db/Statement/Exception.php';
                    
152                    throw new Zend_Db_Statement_Exception("Invalid bind-variable position '$val'");
                    
                
js.js https://gitlab.com/edward.pattillo/phpCourseExamples | JavaScript | 363 lines
                    
133    $('#' + trackId).fadeOut(100);
                    
134    var temp = trackId.split("-");
                    
135    var numericID = parseInt(temp[1]);
                    
240      // specifices where the AJAX request will be sent to on the server
                    
241      url: "ajaxSubmit.php",
                    
242
                    
275    // .fail defines what will happen when the ajax request fails and doesn't return a JSON object
                    
276    // we will have it present the error message returned from PHP at the top of the page
                    
277    .fail(function(returnData) {
                    
290      // specifices where the AJAX request will be sent to on the server
                    
291      url: "ajax.php",
                    
292
                    
326    // .fail defines what will happen when the ajax request fails and doesn't return a JSON object
                    
327    // we will have it present the error message returned from PHP at the top of the page
                    
328    .fail(function(returnData) {
                    
                
toolbar.php https://gitlab.com/michield/dokuwiki | PHP | 255 lines
                    
1<?php
                    
2/**
                    
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
                    
6 * @author     Andreas Gohr <andi@splitbrain.org>
                    
7 */
                    
15 * @param  string $varname Name of the JS variable to fill
                    
16 * @author Andreas Gohr <andi@splitbrain.org>
                    
17 */
                    
198                'icon'   => 'image.png',
                    
199                'url'    => 'lib/exe/mediamanager.php?ns=',
                    
200                'name'   => 'mediaselect',
                    
238 *
                    
239 * @author Andreas Gohr <andi@splitbrain.org>
                    
240 */
                    
                
BakeShell.php https://gitlab.com/ViniciusP/project-games | PHP | 317 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
                    
4 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
10 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
11 * @link          http://cakephp.org CakePHP(tm) Project
                    
12 * @since         0.1.0
                    
12 * @since         0.1.0
                    
13 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
                    
14 */
                    
27 *
                    
28 * Bake is CakePHP's code generation script, which can help you kickstart
                    
29 * application development by writing fully functional skeleton controllers,
                    
31 *
                    
32 * @link http://book.cakephp.org/3.0/en/console-and-shells/code-generation-with-bake.html
                    
33 */
                    
                
makeXMLForOneService.php https://gitlab.com/florianocomercial/centreon | PHP | 287 lines
                    
1<?php
                    
2/*
                    
38 */
                    
39require_once realpath(dirname(__FILE__) . "/../../../../../../config/centreon.config.php");
                    
40
                    
40
                    
41include_once $centreon_path . "www/class/centreonUtils.class.php";
                    
42
                    
45 */
                    
46include_once _CENTREON_PATH_ . "www/class/centreonXMLBGRequest.class.php";
                    
47include_once _CENTREON_PATH_ . "www/class/centreonLang.class.php";
                    
84
                    
85$tab = preg_split('/\_/', $svc_id);
                    
86$host_id = $tab[0];
                    
132if ($data = $DBRESULT->fetchRow()) {
                    
133    /* Split the plugin_output */
                    
134    $outputLines = explode('\n', $data['output']);
                    
                
string.rst https://gitlab.com/albertkeba/docs | ReStructuredText | 300 lines
                    
42
                    
43.. php:staticmethod:: tokenize($data, $separator = ',', $leftBound = '(', $rightBound = ')')
                    
44
                    
50
                    
51        $data = "cakephp 'great framework' php";
                    
52        $result = String::tokenize($data, ' ', "'", "'");
                    
53        // result contains
                    
54        array('cakephp', "'great framework'", 'php');
                    
55
                    
55
                    
56.. php:staticmethod:: insert($string, $data, $options = array())
                    
57
                    
63
                    
64.. php:staticmethod:: cleanInsert($string, $options = array())
                    
65
                    
                
functions.inc.php https://gitlab.com/boxnia/NFU_MOVIL | PHP | 346 lines
                    
1<?php
                    
2
                    
162function valida_dates($start_day, $daylight) {
                    
163    // list($mes_one, $dia_one, $anio_one) = split('/', $start_day);
                    
164    //list($mes_two, $dia_two, $anio_two)= split('/', $daylight);
                    
                
class-wp-customize-setting.php https://gitlab.com/Gashler/dp | PHP | 439 lines
                    
1<?php
                    
2/**
                    
46		// Parse the ID for array keys.
                    
47		$this->id_data[ 'keys' ] = preg_split( '/\[/', str_replace( ']', '', $this->id ) );
                    
48		$this->id_data[ 'base' ] = array_shift( $this->id_data[ 'keys' ] );
                    
                
cdat_domain.py https://gitlab.com/rbax81/VisTrails | Python | 289 lines
                    
12## Licensing requirements will be met:
                    
13## http://www.opensource.org/licenses/gpl-license.php
                    
14##
                    
48        self._actions = actions
                    
49        (self._namespace, self._name) = self.split(codepath)
                    
50
                    
51    @staticmethod
                    
52    def split(codepath):
                    
53        dot = codepath.rfind('.')
                    
74        for t in CDATModule._extra_modules:
                    
75            namespace,name = CDATModule.split(t)
                    
76            lines.append("%s = new_module(Module,'%s')\n"%(name,name))
                    
224        self._doc = doc
                    
225        self._instance = [i.strip(" \t\n") for i in instance.split('/')]
                    
226        self._valid_instances = []
                    
                
class-vc-backend-editor.php https://gitlab.com/mattswann/launch-housing | PHP | 356 lines
                    
1<?php
                    
2if ( ! defined( 'ABSPATH' ) ) {
                    
55		), 5 );
                    
56		add_action( 'admin_print_scripts-post.php', array(
                    
57			&$this,
                    
59		) );
                    
60		add_action( 'admin_print_scripts-post-new.php', array(
                    
61			&$this,
                    
106		$this->post_custom_css = $post_custom_css;
                    
107		vc_include_template( 'editors/backend_editor.tpl.php', array(
                    
108			'editor' => $this,
                    
125	public function renderEditorFooter() {
                    
126		vc_include_template( 'editors/partials/backend_editor_footer.tpl.php', array(
                    
127			'editor' => $this,
                    
254		wp_register_script( 'vc_accordion_script', vc_asset_url( 'lib/vc_accordion/vc-accordion.min.js' ), array( 'jquery' ), WPB_VC_VERSION, true );
                    
255		wp_register_script( 'wpb_php_js', vc_asset_url( 'lib/php.default/php.default.min.js' ), array( 'jquery' ), WPB_VC_VERSION, true );
                    
256		// used as polyfill for JSON.stringify and etc
                    
                
CookieJar.php https://gitlab.com/tybantarnusa/pmb-2016 | PHP | 385 lines
                    
21 *
                    
22 * @file     CAS/CookieJar.php
                    
23 * @category Authentication
                    
23 * @category Authentication
                    
24 * @package  PhpCAS
                    
25 * @author   Adam Franco <afranco@middlebury.edu>
                    
26 * @license  http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
                    
27 * @link     https://wiki.jasig.org/display/CASC/phpCAS
                    
28 */
                    
38 * @license  http://www.apache.org/licenses/LICENSE-2.0  Apache License 2.0
                    
39 * @link     https://wiki.jasig.org/display/CASC/phpCAS
                    
40 */
                    
127     * Parse Cookies without PECL
                    
128     * From the comments in http://php.net/manual/en/function.http-parse-cookie.php
                    
129     *
                    
                
qrsplit.php https://gitlab.com/Ltaimao/wecenter | PHP | 311 lines
                    
9 *
                    
10 * PHP QR Code is distributed under LGPL 3
                    
11 * Copyright (C) 2010 Dominik Dzienia <deltalab at poczta dot fm>
                    
32 */
                    
33    class QRsplit {
                    
34
                    
168
                    
169            $ret = $this->input->append(QR_MODE_AN, $run, str_split($this->dataStr));
                    
170            if($ret < 0)
                    
303
                    
304            $split = new QRsplit($string, $input, $modeHint);
                    
305            
                    
308                
                    
309            return $split->splitString();
                    
310        }
                    
                
index.py https://gitlab.com/xiaok/SaltAdmin | Python | 237 lines
                    
23def decryptUID(uStr):
                    
24    return int(uStr.split('a')[1])
                    
25
                    
62    Location = 'Localhost'
                    
63    ip = LoginHost.split('.')
                    
64    if ip[0]+ip[1] in ['17216','192168','1270'] or ip[0] == '10':
                    
67        # 这里要从公网去解析
                    
68        url = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=" + LoginHost
                    
69        response = urllib2.urlopen(url)
                    
                
paypal-return-in-web-accept-sp.inc.php https://gitlab.com/Gashler/sg | PHP | 148 lines
                    
1<?php
                    
2/**
                    
58
                    
59					list (, $paypal['sp_ids'], $paypal['hours']) = preg_split('/\:/', $paypal['item_number'], 3);
                    
60
                    
75
                    
76						if($processing && ($code = $GLOBALS['WS_PLUGIN__']['s2member']['o']['sp_tracking_codes']) && is_array($cv = preg_split('/\|/', $paypal['custom'])))
                    
77						{
                    
                
emogrifier.php https://gitlab.com/endomorphosis/OLAAaction | PHP | 228 lines
                    
1<?php defined('_JEXEC') or die('Restricted access'); ?>
                    
2<?php
                    
17    2009-11-04  Explicitly declared static functions static to get rid of E_STRICT notices.
                    
18    2010-05-18  Fixed bug where full url filenames with protocols wouldn't get split improperly when we explode on ':'... Thanks Mark!
                    
19                Added two new attribute selectors
                    
20    2010-06-16  Added static caching for less processing overhead in situations where multiple emogrification takes place
                    
21    2010-07-26  Fixed bug where '0' values were getting discarded because of php's empty() function... Thanks Scott!
                    
22    2010-09-03  Added checks to invisible node removal to ensure that we don't try to remove non-existent child nodes of parents that have already been deleted
                    
95
                    
96                // else split by commas and duplicate attributes so we can sort by selector precedence
                    
97                $selectors = explode(',',$selectorString);
                    
                
AbstractPaginator.php https://gitlab.com/zan_zan/laravel_sample | PHP | 487 lines
                    
1<?php
                    
2
                    
271    /**
                    
272     * Determine if there are enough items to split into multiple pages.
                    
273     *
                    
                
ScopeIndentSniff.php https://gitlab.com/michield/dokuwiki | PHP | 319 lines
                    
9 * @package   PHP_CodeSniffer
                    
10 * @author    Andreas Gohr <andi@splitbrain.org>
                    
11 * @author    Greg Sherwood <gsherwood@squiz.net>
                    
15 * @version   CVS: $Id: ScopeIndentSniff.php 270281 2008-12-02 02:38:34Z squiz $
                    
16 * @link      http://pear.php.net/package/PHP_CodeSniffer
                    
17 */
                    
31 * @version   Release: 1.2.0
                    
32 * @link      http://pear.php.net/package/PHP_CodeSniffer
                    
33 */
                    
76     *
                    
77     * @param PHP_CodeSniffer_File $phpcsFile All the tokens found in the document.
                    
78     * @param int                  $stackPtr  The position of the current token
                    
82     */
                    
83    public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr)
                    
84    {
                    
                
c.py https://gitlab.com/envieidoc/Clover | Python | 387 lines
                    
145        if FuncDeclPattern.match(var.Declarator):
                    
146            DeclSplitList = var.Declarator.split('(')
                    
147            FuncName = DeclSplitList[0]
                    
147            FuncName = DeclSplitList[0]
                    
148            FuncNamePartList = FuncName.split()
                    
149            if len(FuncNamePartList) > 1:
                    
245    ParamIdList = []
                    
246    DeclSplitList = FuncDeclarator.split('(')
                    
247    if len(DeclSplitList) < 2:
                    
249    FuncName = DeclSplitList[0]
                    
250    ParamStr = DeclSplitList[1].rstrip(')')
                    
251    LineSkipped = 0
                    
318        FuncDef.Declarator = FuncDef.Declarator.lstrip('*')
                    
319        DeclSplitList = FuncDef.Declarator.split('(')
                    
320        if len(DeclSplitList) < 2:
                    
                
style.css https://gitlab.com/github-cloud-corp/aws-sdk-php | CSS | 672 lines
                    
355
                    
356/* Splitter
                    
357 -------------------------------------*/
                    
357 -------------------------------------*/
                    
358#splitter {
                    
359  position: fixed;
                    
366
                    
367#splitter.active {
                    
368  opacity: .5;
                    
438
                    
439.php-keyword1 {
                    
440  color: #468847;
                    
490
                    
491span.l .php-var a:hover, span.l .php-var a:active, span.l .php-var a:focus {
                    
492  color: #c09853 !important;
                    
                
bench_internal.c https://gitlab.com/vectorci/rippled | C | 318 lines
                    
3 * Distributed under the MIT software license, see the accompanying   *
                    
4 * file COPYING or http://www.opensource.org/licenses/mit-license.php.*
                    
5 **********************************************************************/
                    
92#ifdef USE_ENDOMORPHISM
                    
93void bench_scalar_split(void* arg) {
                    
94    int i;
                    
98        secp256k1_scalar_t l, r;
                    
99        secp256k1_scalar_split_lambda_var(&l, &r, &data->scalar_x);
                    
100        secp256k1_scalar_add(&data->scalar_x, &data->scalar_x, &data->scalar_y);
                    
293#ifdef USE_ENDOMORPHISM
                    
294    if (have_flag(argc, argv, "scalar") || have_flag(argc, argv, "split")) run_benchmark("scalar_split", bench_scalar_split, bench_setup, NULL, &data, 10, 20000);
                    
295#endif
                    
                
jquery.serializejson.js https://gitlab.com/Mirros/cdnjs | JavaScript | 193 lines
                    
6  Copyright (c) 2014 Mario Izquierdo
                    
7  Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
                    
8  and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
                    
22    $.each(formAsArray, function (i, input) {
                    
23      keys = f.splitInputNameIntoKeysArray(input.name); // "some[deep][key]" => ['some', 'deep', 'key']
                    
24      value = f.parseValue(input.value, opts); // string, number, boolean or null
                    
79
                    
80    // Split the input name in programatically readable keys
                    
81    // "foo"              => ['foo']
                    
85    // "arr[][val]"       => ['arr', '', 'val']
                    
86    splitInputNameIntoKeysArray: function (name) {
                    
87      var keys, last, f;
                    
89      if (f.isUndefined(name)) { throw new Error("ArgumentError: param 'name' expected to be a string, found undefined"); }
                    
90      keys = $.map(name.split('['), function (key) {
                    
91        last = key[key.length - 1];
                    
                
index.php git://git.savannah.nongnu.org/savane-cleanup.git | PHP | 363 lines
                    
1<?php
                    
2# Manage user preferences
                    
22
                    
23# we need to define the theme before loading the pre.php init script,
                    
24# otherwise the page needs to be reloaded for the change to take effect.
                    
25# see bug #1987
                    
26require_once('../../include/sane.php');
                    
27extract(sane_import('post',
                    
40
                    
41require_once('../../include/init.php');
                    
42require_once('../../include/timezones.php');
                    
139
                    
140print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
                    
141
                    
146
                    
147print "\n".html_splitpage(1);
                    
148
                    
                
social.js https://gitlab.com/Mirros/jsdelivr | JavaScript | 452 lines
                    
50
                    
51		// comments.php
                    
52		if ($('#social').length) {
                    
98					if (prevLink !== null) {
                    
99						var _prevLink = prevLink.split('#comments');
                    
100						if (_prevLink.indexOf('?') == -1) {
                    
109					if (nextLink !== null) {
                    
110						var _nextLink = nextLink.split('#comments');
                    
111						if (_nextLink.indexOf('?') == -1) {
                    
220							if (content.substr(0, 1) == '@') {
                    
221								username = content.split(' ')[0].substr(1);
                    
222							}
                    
230							var $author = $parent.find('.social-comment-author a'),
                    
231								author_rel = $author.attr('rel').split(' ');
                    
232							$('#in_reply_to_status_id').val(author_rel[0]);
                    
                
CFDBFilterParser.php https://gitlab.com/mattswann/launch-housing | PHP | 302 lines
                    
1<?php

                    
2/*

                    
21

                    
22include_once('CFDBEvaluator.php');

                    
23require_once('CFDBParserBase.php');

                    
28 * Individual expressions (like 'field1=value1') are of the form $name . $operator . $value where

                    
29 * $operator is any PHP comparison operator or '=' which is interpreted as '=='.

                    
30 * $value has a special case where if it is 'null' it is interpreted as the value null

                    
137     * @param  $comparisonExpression string in the form 'value1' . 'operator' . 'value2' where

                    
138     * operator is a php comparison operator or '='

                    
139     * @return array of string [ value1, operator, value2 ]

                    
145        return preg_split('/(===)|(==)|(=)|(!==)|(!=)|(<>)|(<=)|(<)|(>=)|(>)|(~~)/',

                    
146                $comparisonExpression, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);

                    
147    }

                    
232     * @param  $left mixed

                    
233     * @param  $operator string representing any PHP comparison operator or '=' which is taken to mean '=='

                    
234     * @param  $right $mixed. SPECIAL CASE: if it is the string 'null' it is taken to be the value null

                    
                
Phrase.php https://gitlab.com/Ltaimao/wecenter | PHP | 270 lines
                    
1<?php
                    
2/**
                    
24/** Zend_Search_Lucene_Search_Query_Processing */
                    
25//require_once 'Zend/Search/Lucene/Search/Query/Preprocessing.php';
                    
26
                    
127//        if (strpos($this->_phrase, '?') !== false || strpos($this->_phrase, '*') !== false) {
                    
128//            //require_once 'Zend/Search/Lucene/Search/QueryParserException.php';
                    
129//            throw new Zend_Search_Lucene_Search_QueryParserException('Wildcards are only allowed in a single terms.');
                    
131
                    
132        // Split query into subqueries if field name is not specified
                    
133        if ($this->_field === null) {
                    
133        if ($this->_field === null) {
                    
134            //require_once 'Zend/Search/Lucene/Search/Query/Boolean.php';
                    
135            $query = new Zend_Search_Lucene_Search_Query_Boolean();
                    
137
                    
138            //require_once 'Zend/Search/Lucene.php';
                    
139            if (Zend_Search_Lucene::getDefaultSearchField() === null) {
                    
                
bookmark-template.php https://gitlab.com/endomorphosis/reservationtelco | PHP | 256 lines
                    
1<?php
                    
2/**
                    
218	if ( $categorize ) {
                    
219		//Split the bookmarks into ul's for each category
                    
220		$cats = get_terms('link_category', array('name__like' => $category_name, 'include' => $category, 'exclude' => $exclude_category, 'orderby' => $category_orderby, 'order' => $category_order, 'hierarchical' => 0));
                    
                
AutoParagraphTest.php https://gitlab.com/Griffolion/Game-Embargo-Tracker | PHP | 577 lines
                    
1<?php
                    
2
                    
220
                    
221    public function testSplitUpInternalsOfPTagInBlockNode()
                    
222    {
                    
232
                    
233    public function testSplitUpInlineNodesInPTagInBlockNode()
                    
234    {
                    
                
CakeTestFixture.php https://gitlab.com/manuperazafa/elsartenbackend | PHP | 328 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
                    
4 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
10 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
11 * @link          http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests
                    
12 * @package       Cake.TestSuite.Fixture
                    
12 * @package       Cake.TestSuite.Fixture
                    
13 * @since         CakePHP(tm) v 1.2.0.4667
                    
14 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
                    
34/**
                    
35 * CakePHP's DBO driver (e.g: DboMysql).
                    
36 *
                    
137			if (isset($import['model'])) {
                    
138				list($plugin, $modelClass) = pluginSplit($import['model'], true);
                    
139				App::uses($modelClass, $plugin . 'Model');
                    
                
XmlFileLoader.php https://gitlab.com/fiesta-framework/Documentation | PHP | 256 lines
                    
1<?php
                    
2
                    
128
                    
129        $schemes = preg_split('/[\s,\|]++/', $node->getAttribute('schemes'), -1, PREG_SPLIT_NO_EMPTY);
                    
130        $methods = preg_split('/[\s,\|]++/', $node->getAttribute('methods'), -1, PREG_SPLIT_NO_EMPTY);
                    
156        $host = $node->hasAttribute('host') ? $node->getAttribute('host') : null;
                    
157        $schemes = $node->hasAttribute('schemes') ? preg_split('/[\s,\|]++/', $node->getAttribute('schemes'), -1, PREG_SPLIT_NO_EMPTY) : null;
                    
158        $methods = $node->hasAttribute('methods') ? preg_split('/[\s,\|]++/', $node->getAttribute('methods'), -1, PREG_SPLIT_NO_EMPTY) : null;
                    
                
Part.php https://bitbucket.org/freddixx/e-business-vcrm-plugin.git | PHP | 486 lines
                    
1<?php
                    
2/**
                    
18 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
19 * @version    $Id: Part.php 9099 2008-03-30 19:35:47Z thomas $
                    
20 */
                    
25 */
                    
26require_once 'Zend/Mime/Decode.php';
                    
27
                    
30 */
                    
31require_once 'Zend/Mail/Part/Interface.php';
                    
32
                    
110                 */
                    
111                require_once 'Zend/Mail/Exception.php';
                    
112                throw new Zend_Mail_Exception('handler is not a valid mail handler');
                    
117                 */
                    
118                require_once 'Zend/Mail/Exception.php';
                    
119                throw new Zend_Mail_Exception('need a message id with a handler');
                    
                
html.php https://gitlab.com/Bartwillemsen/aurora-framework | PHP | 376 lines
                    
1<?php
                    
2namespace Aurora;
                    
37
                    
38		return '<script src="'.$url.'"'.static::attributes($attributes).'></script>'.PHP_EOL;
                    
39	}
                    
69
                    
70		return '<link href="'.$url.'"'.static::attributes($attributes).'>'.PHP_EOL;
                    
71	}
                    
320
                    
321		foreach (str_split($value) as $letter)
                    
322		{
                    
                
ko.js http://avblog.googlecode.com/svn/trunk/ | JavaScript | 502 lines
                    
5 * Licensed under the terms of the GNU Lesser General Public License:
                    
6 * 		http://www.opensource.org/licenses/lgpl-license.php
                    
7 * 
                    
115MergeCells			: "? ???",
                    
116SplitCell			: "? ???",
                    
117TableDelete			: "Delete Table",	//MISSING
                    
                
behat_grade.php https://gitlab.com/unofficial-mirrors/moodle | PHP | 302 lines
                    
1<?php
                    
2// This file is part of Moodle - http://moodle.org/
                    
25
                    
26// NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
                    
27
                    
27
                    
28require_once(__DIR__ . '/../../../lib/behat/behat_base.php');
                    
29
                    
252    protected function select_in_gradebook_tabs($gradepath) {
                    
253        $gradepath = preg_split('/\s*>\s*/', trim($gradepath));
                    
254        if (count($gradepath) > 2) {
                    
                
inputfilter.php https://gitlab.com/endomorphosis/OLAAaction | PHP | 551 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 *  @class: InputFilter (PHP4 & PHP5, with comments)
                    
4 * @project: PHP Input Filter
                    
5 * @date: 10-05-2005
                    
6 * @version: 1.2.2_php4/php5
                    
7 * @author: Daniel Morris
                    
58	/**
                    
59	 * Method to be called by another php script. Processes for XSS and
                    
60	 * specified bad code.
                    
354			/*
                    
355			 * Split into name/value pairs
                    
356			 */
                    
462	/**
                    
463	 * Method to be called by another php script. Processes for SQL injection
                    
464	 *
                    
                
Entity.php https://gitlab.com/LisovyiEvhenii/ismextensions | PHP | 354 lines
                    
1<?php
                    
2/**
                    
9 * It is also available through the world-wide-web at this URL:
                    
10 * http://opensource.org/licenses/osl-3.0.php
                    
11 * If you did not receive a copy of the license and are unable to
                    
23 * @copyright  Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
                    
24 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25 */
                    
106                    if (strpos($k, $key . '/') === 0) {
                    
107                        $split = explode('/', $k);
                    
108                        $filters[$key][$split[1]] = $v;
                    
                
jquery.tagsinput.js https://gitlab.com/techniconline/kmc | JavaScript | 358 lines
                    
10 Licensed under the MIT license:
                    
11 http://www.opensource.org/licenses/mit-license.php
                    
12
                    
82
                    
83            var tagslist = $(this).val().split(delimiter[id]);
                    
84            if (tagslist[0] == '') {
                    
143
                    
144            var old = $(this).val().split(delimiter[id]);
                    
145
                    
166        var id = $(this).attr('id');
                    
167        var tagslist = $(this).val().split(delimiter[id]);
                    
168        return (jQuery.inArray(val, tagslist) >= 0); //true when tag exists, false when not
                    
347        var id = $(obj).attr('id');
                    
348        var tags = val.split(delimiter[id]);
                    
349        for (i = 0; i < tags.length; i++) {
                    
                
SimpleWikiHelper.java https://gitlab.com/brian0218/rk3288_r-box_android4.4.2_sdk | Java | 214 lines
                    
49    /**
                    
50     * Regular expression that splits "Word of the day" entry into word
                    
51     * name, word type, and the first description bullet point.
                    
61    private static final String WIKTIONARY_PAGE =
                    
62            "http://en.wiktionary.org/w/api.php?action=query&prop=revisions&titles=%s&" +
                    
63            "rvprop=content&format=json%s";
                    
                
tripal_feature_interpro_results.tpl.php https://gitlab.com/vijaya.tsavatapalli/drupal7 | PHP | 235 lines
                    
1<?php
                    
2$feature = $variables['node']->feature;
                    
149            
                    
150            // the Prosite databases are split into two libraries for InterProScan. But
                    
151            // we can just use the PROSITE database for both of them, so rename it here.
                    
230    
                    
231    <div class="tripal_feature-interpro_results_subtitle">Summary of Annotated IPR terms</div> <?php 
                    
232    print $resultsHTML;?>
                    
232    print $resultsHTML;?>
                    
233    </div> <?php 
                    
234  }
                    
                
umeditor.config.js https://gitlab.com/0072016/0072016-mmzrb- | JavaScript | 257 lines
                    
103
                    
104            parsedStack = parsedStack.split( this.localSeparator );
                    
105            parsedStack.length = parsedStack.length - 1;
                    
139        //图片上传配置区
                    
140        ,imageUrl:"../admin/upload.php?infImgUpload=1"             //图片上传提交地址
                    
141        ,imagePath:URL                     //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置
                    
                
TargetTxtClassObject.py https://gitlab.com/envieidoc/Clover | Python | 190 lines
                    
7# which accompanies this distribution.  The full text of the license may be found at
                    
8# http://opensource.org/licenses/bsd-license.php
                    
9#
                    
73    # @param CommentCharacter:     Comment char, be used to ignore comment content
                    
74    # @param KeySplitCharacter:    Key split char, between key name and key value. Key1 = Value1, '=' is the key split char
                    
75    #
                    
78    #
                    
79    def ConvertTextFileToDict(self, FileName, CommentCharacter, KeySplitCharacter):
                    
80        F = None
                    
93
                    
94            LineList = Line.split(KeySplitCharacter, 1)
                    
95            Key = LineList[0].strip()
                    
125                         DataType.TAB_TAT_DEFINES_TOOL_CHAIN_TAG]:
                    
126                self.TargetTxtDictionary[Key] = Value.split()
                    
127            elif Key == DataType.TAB_TAT_DEFINES_MAX_CONCURRENT_THREAD_NUMBER:
                    
                
qrmask.php https://gitlab.com/Ltaimao/wecenter | PHP | 328 lines
                    
1<?php
                    
2/*
                    
2/*
                    
3 * PHP QR Code encoder
                    
4 *
                    
9 *
                    
10 * PHP QR Code is distributed under LGPL 3
                    
11 * Copyright (C) 2010 Dominik Dzienia <deltalab at poczta dot fm>
                    
134            foreach ($codeLines as $line)
                    
135                $codeArr[] = str_split($line);
                    
136            
                    
286        {
                    
287            $minDemerit = PHP_INT_MAX;
                    
288            $bestMaskNum = 0;
                    
                
TestFixture.php https://gitlab.com/vannh/portal_training | PHP | 325 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * CakePHP(tm) Tests <http://book.cakephp.org/2.0/en/development/testing.html>
                    
4 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
11 * @since         1.2.0
                    
12 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
                    
13 */
                    
116        if ($this->table === null) {
                    
117            list(, $class) = namespaceSplit(get_class($this));
                    
118            preg_match('/^(.*)Fixture$/', $class, $matches);
                    
                
csv.php https://github.com/gerrywastaken/phpmyadmin-GitHubed.git | PHP | 323 lines
                    
1<?php
                    
2/* vim: set expandtab sw=4 ts=4 sts=4: */
                    
3/**
                    
4 * CSV import plugin for phpMyAdmin
                    
5 *
                    
6 * @todo    add an option for handling NULL values
                    
7 * @version $Id: csv.php 11336 2008-06-21 15:01:27Z lem9 $
                    
8 */
                    
8 */
                    
9if (! defined('PHPMYADMIN')) {
                    
10    exit;
                    
92    $fields = array();
                    
93    $tmp   = split(',( ?)', $csv_columns);
                    
94    foreach ($tmp as $key => $val) {
                    
                
tax_watch_export_pdf(3).php https://gitlab.com/vince.omega/PDF-PHP-Scripts | PHP | 534 lines
                    
1<?php
                    
2ini_set('max_execution_time', 0); //300 seconds = 5 minutes
                    
2ini_set('max_execution_time', 0); //300 seconds = 5 minutes
                    
3require_once('fpdf/fpdf/fpdf.php');
                    
4require_once('../../header.inc.php');
                    
7@author: Larry Stanfield
                    
8PHP PDF generation script written by Larry Stanfield
                    
9Contact @ vince.omega@gmail.com
                    
9Contact @ vince.omega@gmail.com
                    
10Powered by the open source pdf php class fpdf
                    
11www.fpdf.org
                    
97				$conArray = array();
                    
98				$conArray = str_split($content, 23);
                    
99				$k = sizeof($conArray);
                    
186
                    
187$filename = 'c:/php_temp/download_' . preg_replace('/[^a-z0-9]/i', '_', $DB->cleanString($_GET['custcodes'])) . '.pdf';
                    
188
                    
                
date.php https://github.com/gallery/gallery3-vendor.git | PHP | 395 lines
                    
1<?php defined('SYSPATH') OR die('No direct access allowed.');
                    
2/**
                    
7 * @copyright  (c) 2007-2009 Kohana Team
                    
8 * @license    http://kohanaphp.com/license
                    
9 */
                    
55	 * Returns the offset (in seconds) between two time zones.
                    
56	 * @see     http://php.net/timezones
                    
57	 *
                    
277		// Array with the output formats
                    
278		$output = preg_split('/[^a-z]+/', strtolower((string) $output));
                    
279
                    
                
productos.php https://gitlab.com/merintec/barvo | PHP | 311 lines
                    
1<?php
                    
2include("../comunes/variables.php");
                    
3include("verificar_admin.php");
                    
3include("verificar_admin.php");
                    
4include("../comunes/conexion.php");
                    
5$tabla='productos';
                    
33    <link type="text/css" rel="stylesheet" href="../js/whatyouseeiswhatyouget/jquery-te-1.4.0.css">
                    
34    <title><?php echo $nom_pagina; ?></title>
                    
35  </head>
                    
179<body>
                    
180    <?php
                    
181        include("menu_backend.php");
                    
280               
                    
281                <div align="center"> <a href="<?php echo $_PHP_SELF; ?>"><button id="cancelar" type="button" class="btn btn_form oculto" >Cancelar</button></a>  <input type="submit" name="guardar"  id="guardar" value="Guardar" class="btn btn_form" > </div>
                    
282           
                    
                
RelativeLayoutRuleTest.java https://gitlab.com/Codeaurora/platform_sdk | Java | 166 lines
                    
7 *
                    
8 *      http://www.eclipse.org/org/documents/epl-v10.php
                    
9 *
                    
143            for (String attachment : attachments) {
                    
144                String[] elements = attachment.split("=");
                    
145                String name = "layout_" + elements[0];
                    
                
license2rtf.js https://gitlab.com/CORP-RESELLER/node | JavaScript | 332 lines
                    
10 */
                    
11function LineSplitter() {
                    
12  const self = this;
                    
18  this.write = function(data) {
                    
19    var lines = (buffer + data).split(/\r\n|\n\r|\n|\r/);
                    
20    for (var i = 0; i < lines.length - 1; i++) {
                    
34}
                    
35inherits(LineSplitter, Stream);
                    
36
                    
40 */
                    
41function ParagraphParser() {
                    
42  const self = this;
                    
319const stdout = process.stdout;
                    
320const line_splitter = new LineSplitter();
                    
321const paragraph_parser = new ParagraphParser();
                    
                
kixtart.php https://gitlab.com/billyprice1/Stikked | PHP | 327 lines
                    
1<?php
                    
2/*************************************************************************************
                    
2/*************************************************************************************
                    
3 * kixtart.php
                    
4 * --------
                    
9 *
                    
10 * PHP language file for GeSHi.
                    
11 *
                    
172            'SRnd',
                    
173            'Split',
                    
174            'SidToName',
                    
311    'OOLANG' => true,
                    
312    'OBJECT_SPLITTERS' => array(
                    
313        1 => '.'
                    
                
Route.php https://github.com/sitengine/sitengine.git | PHP | 313 lines
                    
1<?php
                    
2/**
                    
17 * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
                    
18 * @version    $Id: Route.php 11073 2008-08-26 16:29:59Z dasprid $
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
22/** Zend_Controller_Router_Route_Abstract */
                    
23require_once 'Zend/Controller/Router/Route/Abstract.php';
                    
24
                    
106    /**
                    
107     * Prepares the route for mapping by splitting (exploding) it
                    
108     * to a corresponding atomic parts. These parts are assigned
                    
256                } else {
                    
257                    require_once 'Zend/Controller/Router/Exception.php';
                    
258                    throw new Zend_Controller_Router_Exception($name . ' is not specified');
                    
                
loader.php https://gitlab.com/phamngsinh/baitaplon_sinhvien | PHP | 367 lines
                    
1<?php
                    
2/**
                    
74
                    
75				// Only load for php files.
                    
76				// Note: DirectoryIterator::getExtension only available PHP >= 5.3.6
                    
76				// Note: DirectoryIterator::getExtension only available PHP >= 5.3.6
                    
77				if ($file->isFile() && substr($fileName, strrpos($fileName, '.') + 1) == 'php')
                    
78				{
                    
79					// Get the class name and full path for each file.
                    
80					$class = strtolower($classPrefix . preg_replace('#\.php$#', '', $fileName));
                    
81
                    
147				// Only register the class for autoloading if the file exists.
                    
148				if (is_file($base . '/' . $path . '.php'))
                    
149				{
                    
149				{
                    
150					self::$classes[strtolower($class)] = $base . '/' . $path . '.php';
                    
151					$success = true;
                    
                
SugarFieldDatetime.php https://gitlab.com/tjaafar/SuiteCRM | PHP | 215 lines
                    
1<?php
                    
2/*********************************************************************************
                    
39
                    
40require_once('include/SugarFields/Fields/Base/SugarFieldBase.php');
                    
41
                    
158        if ( !$timedate->check_matching_format($value, $format) ) {
                    
159            $parts = $timedate->split_date_time($value);
                    
160            if(empty($parts[0])) {
                    
                
Pop3.php https://gitlab.com/Ltaimao/wecenter | PHP | 328 lines
                    
1<?php
                    
2/**
                    
26 */
                    
27//require_once 'Zend/Mail/Storage/Abstract.php';
                    
28
                    
31 */
                    
32//require_once 'Zend/Mail/Protocol/Pop3.php';
                    
33
                    
36 */
                    
37//require_once 'Zend/Mail/Message.php';
                    
38
                    
114             */
                    
115            //require_once 'Zend/Mail/Storage/Exception.php';
                    
116            throw new Zend_Mail_Storage_Exception('not implemented');
                    
137             */
                    
138            //require_once 'Zend/Mail/Storage/Exception.php';
                    
139            throw new Zend_Mail_Storage_Exception('not implemented');
                    
                
url.py https://gitlab.com/abhi1tb/build | Python | 310 lines
                    
5# This module is part of SQLAlchemy and is released under
                    
6# the MIT License: http://www.opensource.org/licenses/mit-license.php
                    
7
                    
143        else:
                    
144            return self.drivername.split("+")[0]
                    
145
                    
149        else:
                    
150            return self.drivername.split("+")[1]
                    
151
                    
257        if components["database"] is not None:
                    
258            tokens = components["database"].split("?", 2)
                    
259            components["database"] = tokens[0]
                    
                
State.php https://github.com/wrobel/horde-fw3.git | PHP | 416 lines
                    
1<?php
                    
2
                    
4 * SyncML_State object and its property objects from the session. */
                    
5require_once 'SyncML/DeviceInfo.php';
                    
6require_once 'SyncML/Device.php';
                    
6require_once 'SyncML/Device.php';
                    
7require_once 'SyncML/Constants.php';
                    
8require_once 'SyncML/Command/SyncElement.php';
                    
12 *
                    
13 * $Horde: framework/SyncML/SyncML/State.php,v 1.17.2.19 2009-04-07 11:12:54 jan Exp $
                    
14 *
                    
29     *
                    
30     * This is not to confuse with the PHP session id, though it is part of
                    
31     * the generated PHP session id.
                    
56     *
                    
57     * Can be used to identify the client and is part of the PHP session id.
                    
58     *
                    
                
CodeFormatter.php https://gitlab.com/nmhieucoder/laravel_tintuc | PHP | 320 lines
                    
1<?php
                    
2
                    
109        $spans = self::tokenizeSpans($code);
                    
110        $lines = self::splitLines($spans, $startLine, $endLine);
                    
111        $lines = self::formatLines($lines);
                    
139    /**
                    
140     * Split code into highlight spans.
                    
141     *
                    
144     *
                    
145     * @todo consider switching \token_get_all() out for PHP-Parser-based formatting at some point.
                    
146     *
                    
211     */
                    
212    private static function splitLines(\Generator $spans, $startLine = 1, $endLine = null)
                    
213    {
                    
217        foreach ($spans as list($spanType, $spanText)) {
                    
218            foreach (\preg_split('/(\r\n?|\n)/', $spanText) as $index => $spanLine) {
                    
219                if ($index > 0) {
                    
                
TableParser.php https://gitlab.com/madwanz64/laravel | PHP | 284 lines
                    
1<?php
                    
2
                    
111    {
                    
112        $cells = $this->split(new Cursor(\trim($line)));
                    
113
                    
144     */
                    
145    private function split(Cursor $cursor): array
                    
146    {
                    
                
RakString.h https://gitlab.com/computerphilly/openblox | C Header | 354 lines
                    
215
                    
216	/// URL Encode the string. See http://www.codeguru.com/cpp/cpp/cpp_mfc/article.php/c4029/
                    
217	RakNet::RakString& URLEncode(void);
                    
222	/// https://servers.api.rackspacecloud.com/v1.0 to https://,  servers.api.rackspacecloud.com, /v1.0
                    
223	void SplitURI(RakNet::RakString &header, RakNet::RakString &domain, RakNet::RakString &path);
                    
224
                    
                
class-Shoestrap_Color.php https://gitlab.com/aristath/shoestrap-3 | PHP | 481 lines
                    
1<?php
                    
2
                    
11		 * Sanitises a HEX value.
                    
12		 * The way this works is by splitting the string in 6 substrings.
                    
13		 * Each sub-string is individually sanitized, and the result is then returned.
                    
                
ajax.js https://gitlab.com/phamngsinh/baitaplon_sinhvien | JavaScript | 533 lines
                    
68	var sec = dte.getSeconds();
                    
69	ajaxLoad('aindex.php?act=dathangmoi&t=1&sid='+hrs+''+min+''+sec+'','dathang');
                    
70}
                    
80	var sec = dte.getSeconds();
                    
81	ajaxLoad('aindex.php?act=dathangmoi&t=0&sid='+hrs+''+min+''+sec+'','dathang');
                    
82}
                    
102url=window.location.href;
                    
103c_url=url.split('&page');
                    
104
                    
220        {
                    
221        Load2('aindex.php?act=action&stv=checkso&sosim='+field.value+'');	
                    
222        }
                    
224        {
                    
225        Load2('aindex.php?act=action&stv=checkso&sosim='+field.value+'');	
                    
226        }
                    
                
Data.php https://gitlab.com/LisovyiEvhenii/ismextensions | PHP | 478 lines
                    
1<?php
                    
2/**
                    
9 * It is also available through the world-wide-web at this URL:
                    
10 * http://opensource.org/licenses/osl-3.0.php
                    
11 * If you did not receive a copy of the license and are unable to
                    
23 * @copyright  Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
                    
24 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25 */
                    
188    /**
                    
189     * Split SKU of an item by dashes and spaces
                    
190     * Words will not be broken, unless thir length is greater than $length
                    
195     */
                    
196    public function splitSku($sku, $length = 30)
                    
197    {
                    
197    {
                    
198        return Mage::helper('core/string')->str_split($sku, $length, true, false, '[\-\s]');
                    
199    }
                    
                
preprocessors.py https://gitlab.com/Haritiana/Python-Markdown | Python | 346 lines
                    
39        Each subclass of Preprocessor should override the `run` method, which
                    
40        takes the document as a list of strings split by newlines and returns
                    
41        the (possibly modified) list of lines.
                    
55        source = re.sub(r'(?<=\n) +\n', '\n', source)
                    
56        return source.split('\n')
                    
57
                    
99        else:
                    
100            tag = block[1:].split(">", 1)[0].lower()
                    
101            return tag, len(tag)+2, {}
                    
131    def _equal_tags(self, left_tag, right_tag):
                    
132        if left_tag[0] in ['?', '@', '%']:  # handle PHP, etc.
                    
133            return True
                    
191        new_blocks = []
                    
192        text = text.rsplit("\n\n")
                    
193        items = []
                    
                
pmetis.c https://bitbucket.org/pecchia/libnegf.git | C | 341 lines
                    
131  if (nparts > 2) {
                    
132    SplitGraphPart(ctrl, graph, &lgraph, &rgraph);
                    
133    /* printf("%d %d\n", lgraph.nvtxs, rgraph.nvtxs); */
                    
189**************************************************************************/
                    
190void SplitGraphPart(CtrlType *ctrl, GraphType *graph, GraphType *lgraph, GraphType *rgraph)
                    
191{
                    
199
                    
200  IFSET(ctrl->dbglvl, DBG_TIME, starttimer(ctrl->SplitTmr));
                    
201
                    
225
                    
226  SetUpSplitGraph(graph, lgraph, snvtxs[0], snedges[0]);
                    
227  sxadj[0] = lgraph->xadj;
                    
299
                    
300  IFSET(ctrl->dbglvl, DBG_TIME, stoptimer(ctrl->SplitTmr));
                    
301
                    
                
base_vat.py https://gitlab.com/thanhchatvn/cloud-odoo | Python | 330 lines
                    
60
                    
61    def _split_vat(self, vat):
                    
62        vat_country, vat_number = vat[:2].lower(), vat[2:].replace(' ', '')
                    
67        Check the VAT number depending of the country.
                    
68        http://sima-pc.com/nif.php
                    
69        '''
                    
108                continue
                    
109            vat_country, vat_number = self._split_vat(partner.vat)
                    
110            if not check_func(cr, uid, vat_country, vat_number, context=context):
                    
120            return cn[0] in string.ascii_lowercase and cn[1] in string.ascii_lowercase
                    
121        vat_country, vat_number = self._split_vat(self.browse(cr, uid, ids)[0].vat)
                    
122        vat_no = "'CC##' (CC=Country Code, ##=VAT Number)"
                    
                
demo.js https://gitlab.com/link233/bootmw | JavaScript | 491 lines
                    
37	] );
                    
38	this.jsPhpSelect = new OO.ui.ButtonGroupWidget().addItems( [
                    
39		new OO.ui.ButtonWidget( { label: 'JS' } ).setActive( true ),
                    
40		new OO.ui.ButtonWidget( {
                    
41			label: 'PHP',
                    
42			href: 'demos.php' +
                    
63			this.directionSelect.$element,
                    
64			this.jsPhpSelect.$element
                    
65		);
                    
276OO.ui.Demo.prototype.getCurrentFactorValues = function () {
                    
277	return location.hash.slice( 1 ).split( '-' );
                    
278};
                    
                
Fuzzy.php https://bitbucket.org/acidel/buykoala.git | PHP | 287 lines
                    
1<?php
                    
2/**
                    
19 * @license    http://framework.zend.com/license/new-bsd     New BSD License
                    
20 * @version    $Id: Fuzzy.php 20096 2010-01-06 02:05:09Z bkarwin $
                    
21 */
                    
24/** Zend_Search_Lucene_Search_Query_Processing */
                    
25#require_once 'Zend/Search/Lucene/Search/Query/Preprocessing.php';
                    
26
                    
98        if ($this->_field === null) {
                    
99            #require_once 'Zend/Search/Lucene/Search/Query/Boolean.php';
                    
100            $query = new Zend_Search_Lucene_Search_Query_Boolean();
                    
103
                    
104            #require_once 'Zend/Search/Lucene.php';
                    
105            if (Zend_Search_Lucene::getDefaultSearchField() === null) {
                    
110
                    
111            #require_once 'Zend/Search/Lucene/Search/Query/Preprocessing/Fuzzy.php';
                    
112            foreach ($searchFields as $fieldName) {
                    
                
CsvBulkLoader.php https://gitlab.com/djpmedia/silverstripe-framework | PHP | 453 lines
                    
1<?php
                    
2
                    
45    /**
                    
46     * Number of lines to split large CSV files into.
                    
47     *
                    
123            }
                    
124            print $failedMessage . PHP_EOL;
                    
125        } finally {
                    
149    /**
                    
150     * Splits a large file up into many smaller files.
                    
151     *
                    
151     *
                    
152     * @param string $path Path to large file to split
                    
153     * @param int $lines Number of lines per file
                    
156     */
                    
157    protected function splitFile($path, $lines = null)
                    
158    {
                    
                
WireLog.php git://github.com/ryancramerdesign/ProcessWire.git | PHP | 362 lines
                    
1<?php
                    
2
                    
196	/**
                    
197	 * Same as getLines() but returns each log line as an associative array of each part of the line split up
                    
198	 * 
                    
                
Sync.php https://github.com/wrobel/horde.git | PHP | 339 lines
                    
1<?php
                    
2/**
                    
97     * Whether a <MoreData> element has indicated that the sync command is
                    
98     * split into several SyncML message chunks.
                    
99     *
                    
                
vCard.php https://github.com/nerdystudmuffin/dashlet-subpanels.git | PHP | 301 lines
                    
1<?php
                    
2if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
                    
165				}
                    
166				$keyvalue = split(':',$line);
                    
167				if(sizeof($keyvalue)==2){
                    
172					}
                    
173					$values = split(';',$value );
                    
174					$key = strtoupper($keyvalue[0]);
                    
176					$key = strtr($key, ',',';');
                    
177					$keys = split(';' ,$key);
                    
178					
                    
                
Loader.php https://github.com/bhaumik25/zend-framework.git | PHP | 298 lines
                    
1<?php
                    
2/**
                    
43     * Loads a class from a PHP file.  The filename must be formatted
                    
44     * as "$class.php".
                    
45     *
                    
50     * generate a path hierarchy (e.g., "Zend_Example_Class" will map
                    
51     * to "Zend/Example/Class.php").
                    
52     *
                    
53     * If the file was not found in the $dirs, or if no $dirs were specified,
                    
54     * it will attempt to load it from PHP's include_path.
                    
55     *
                    
102    /**
                    
103     * Loads a PHP file.  This is a wrapper for PHP's include() function.
                    
104     *
                    
161     * Returns TRUE if the $filename is readable, or FALSE otherwise.
                    
162     * This function uses the PHP include_path, where PHP's is_readable()
                    
163     * does not.
                    
                
hybi.js https://gitlab.com/blocknotary/IonicInterviews | JavaScript | 474 lines
                    
20  if (typeof this._protocols === 'string')
                    
21    this._protocols = this._protocols.split(/ *, */);
                    
22
                    
34  if (protos !== undefined) {
                    
35    if (typeof protos === 'string') protos = protos.split(/ *, */);
                    
36    this.protocol = protos.filter(function(p) { return supported.indexOf(p) >= 0 })[0];
                    
100
                    
101  // http://www.w3.org/International/questions/qa-forms-utf-8.en.php
                    
102  UTF8_MATCH: /^([\x00-\x7F]|[\xC2-\xDF][\x80-\xBF]|\xE0[\xA0-\xBF][\x80-\xBF]|[\xE1-\xEC\xEE\xEF][\x80-\xBF]{2}|\xED[\x80-\x9F][\x80-\xBF]|\xF0[\x90-\xBF][\x80-\xBF]{2}|[\xF1-\xF3][\x80-\xBF]{3}|\xF4[\x80-\x8F][\x80-\xBF]{2})*$/,
                    
                
ext_string.h https://gitlab.com/Blueprint-Marketing/hhvm | C Header | 346 lines
                    
13   | obtain it through the world-wide-web, please send a note to          |
                    
14   | license@php.net so we can mail you a copy immediately.               |
                    
15   +----------------------------------------------------------------------+
                    
22#include "hphp/runtime/ext/extension.h"
                    
23#include "hphp/runtime/base/zend-string.h"
                    
24#include "hphp/runtime/base/zend-printf.h"
                    
24#include "hphp/runtime/base/zend-printf.h"
                    
25#include "hphp/runtime/base/bstring.h"
                    
26#include <langinfo.h>
                    
27
                    
28namespace HPHP {
                    
29///////////////////////////////////////////////////////////////////////////////
                    
31
                    
32extern const HPHP::StaticString k_HPHP_TRIM_CHARLIST;
                    
33extern const int64_t k_STR_PAD_RIGHT;
                    
                
AppTabsPanel.js https://gitlab.com/rsilveira1987/Expresso | JavaScript | 380 lines
                    
12 * 
                    
13 * NOTE: Tab panels are not sortable yet {@see http://www.extjs.com/forum/showthread.php?p=55045#post55045}
                    
14 * 
                    
54        if(itemEl){
                    
55            item = this.getComponent(itemEl.id.split(this.idDelimiter)[1]);
                    
56            if(item && item.disabled){
                    
364        if (Ext.isString(id)) {
                    
365            return id.split('-').pop();
                    
366        }
                    
                
box_graph_invoices_permonth.php git://github.com/Dolibarr/dolibarr.git | PHP | 293 lines
                    
1<?php
                    
2/* Copyright (C) 2013 Laurent Destailleur  <eldy@users.sourceforge.net>
                    
18/**
                    
19 *	\file       htdocs/core/boxes/box_graph_invoices_permonth.php
                    
20 *	\ingroup    factures
                    
22 */
                    
23include_once DOL_DOCUMENT_ROOT.'/core/boxes/modules_boxes.php';
                    
24
                    
75
                    
76		//include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
                    
77		//$facturestatic=new Facture($this->db);
                    
112
                    
113			include_once DOL_DOCUMENT_ROOT.'/core/class/dolgraph.class.php';
                    
114			include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facturestats.class.php';
                    
114			include_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facturestats.class.php';
                    
115			$autosetarray = preg_split("/[,;:]+/", GETPOST('DOL_AUTOSET_COOKIE'));
                    
116			if (in_array('DOLUSERCOOKIE_box_'.$this->boxcode, $autosetarray)) {
                    
                
InfBinarySectionTest.py https://gitlab.com/envieidoc/Clover | Python | 386 lines
                    
8# distribution. The full text of the license may be found at 
                    
9# http://opensource.org/licenses/bsd-license.php
                    
10#
                    
246def StringToSectionString(String):
                    
247    Lines = String.split('\n')
                    
248    LineNo = 0
                    
261    for Item in SectionString:
                    
262        ValueList = Item[0].split('|')
                    
263        for count in range(len(ValueList)):
                    
                
Timezone.php https://gitlab.com/rsilveira1987/Expresso | PHP | 352 lines
                    
1<?php
                    
2class qCal_Timezone {
                    
34	/**
                    
35	 * @var array An array of timezone metacharacters that this class allows (see PHP's date() function)
                    
36	 * @access protected
                    
53	 * @param boolean $daylightsavings Set to true if this timezone observes daylight savings
                    
54	 * @todo When $abbreviation isn't specified, and $name is a valid pre-defined PHP timezone identifier, use its
                    
55	 * 		 corresponding abbreviation rather than the name itself
                    
133	 * @access public
                    
134	 * @link http://php.net/manual/en/timezones.php A directory of valid timezones
                    
135	 * @todo This method is FUGLY. Rewrite it and make it make sense. This is sort of nonsensical.
                    
301	 * @return $this
                    
302	 * @link http://php.net/manual/en/timezones.php A directory of valid timezones
                    
303	 * @access public
                    
315	 * @return string The formatted timezone
                    
316	 * @link http://php.net/manual/en/timezones.php A directory of valid timezones
                    
317	 * @access public
                    
                
atlres.h https://gitlab.com/quyse/crashfix | C Header | 263 lines
                    
5// The use and distribution terms for this software are covered by the
                    
6// Common Public License 1.0 (http://opensource.org/licenses/cpl1.0.php)
                    
7// which can be found in the file CPL.TXT at the root of this distribution.
                    
93
                    
94  #define ATL_IDW_SIZE_BOX              0xEA20  // size box for splitters
                    
95  #define ATL_IDW_PANE_SAVE             0xEA21  // to shift ATL_IDW_PANE_FIRST
                    
159#define ID_WINDOW_TILE_VERT             0xE134
                    
160#define ID_WINDOW_SPLIT                 0xE135
                    
161#ifndef RC_INVOKED      // code only
                    
                
LC_Page_Admin_Contents.php https://gitlab.com/raku.takayama/eccube-2_13 | PHP | 259 lines
                    
1<?php
                    
2/*
                    
23
                    
24require_once CLASS_EX_REALDIR . 'page_extends/admin/LC_Page_Admin_Ex.php';
                    
25
                    
113                $news = $objNews->getNews($news_id);
                    
114                list($news['year'],$news['month'],$news['day']) = $this->splitNewsDate($news['cast_news_date']);
                    
115                $objFormParam->setParam($news);
                    
240     */
                    
241    public function splitNewsDate($news_date)
                    
242    {
                    
                
jDaoParser.class.php git://github.com/jelix/jelix.git | PHP | 462 lines
                    
1<?php
                    
2/**
                    
16 */
                    
17require_once JELIX_LIB_PATH.'dao/jDaoXmlException.class.php';
                    
18require_once JELIX_LIB_PATH.'dao/jDaoProperty.class.php';
                    
18require_once JELIX_LIB_PATH.'dao/jDaoProperty.class.php';
                    
19require_once JELIX_LIB_PATH.'dao/jDaoMethod.class.php';
                    
20require_once JELIX_LIB_PATH.'dao/jDaoGenerator.class.php';
                    
259                $events = (string) $xml->factory[0]['events'];
                    
260                $this->_eventList = preg_split('/[\\s,]+/', $events);
                    
261            }
                    
298
                    
299        $infos['pk'] = preg_split('/[\\s,]+/', $infos['primarykey']);
                    
300        unset($infos['primarykey']);
                    
309            }
                    
310            $infos['fk'] = preg_split('/[\\s,]+/', $infos['onforeignkey']);
                    
311            unset($infos['onforeignkey']);
                    
                
Document.php https://gitlab.com/Japang-Jawara/jawara-penilaian | PHP | 404 lines
                    
1<?php
                    
2/**
                    
2/**
                    
3 * @package php-svg-lib
                    
4 * @link    http://github.com/PhenX/php-svg-lib
                    
150            if (isset($attributes['viewbox'])) {
                    
151                $viewBox = preg_split('/[\s,]+/is', trim($attributes['viewbox']));
                    
152                if (count($viewBox) == 4) {
                    
                
Server.php https://gitlab.com/robfrawley/php-memcached-admin | PHP | 513 lines
                    
1<?php
                    
2/**
                    
5 * @license   http://www.apache.org/licenses/LICENSE-2.0 Apache-2.0
                    
6 * @package   phpMemcachedAdmin
                    
7 */
                    
139        # Exploding by \r\n
                    
140        $lines = preg_split('/\r\n/', $string);
                    
141
                    
147            {
                    
148                $data = preg_split('/ /', $line);
                    
149                if(isset($data[2]))
                    
160            {
                    
161                $data = preg_split('/ /', $line);
                    
162                if(isset($data[1]))
                    
240            {
                    
241                $key = preg_split('/:/', $key);
                    
242                $slabs[$key[0]][$key[1]] = $value;
                    
                
Data.php https://bitbucket.org/mengqing/magento-mirror.git | PHP | 478 lines
                    
1<?php
                    
2/**
                    
9 * It is also available through the world-wide-web at this URL:
                    
10 * http://opensource.org/licenses/osl-3.0.php
                    
11 * If you did not receive a copy of the license and are unable to
                    
23 * @copyright   Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
                    
24 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
                    
25 */
                    
188    /**
                    
189     * Split SKU of an item by dashes and spaces
                    
190     * Words will not be broken, unless thir length is greater than $length
                    
195     */
                    
196    public function splitSku($sku, $length = 30)
                    
197    {
                    
197    {
                    
198        return Mage::helper('core/string')->str_split($sku, $length, true, false, '[\-\s]');
                    
199    }
                    
                
exceptions.py https://gitlab.com/Rockyspade/titanium_mobile | Python | 255 lines
                    
4# This module is part of Mako and is released under
                    
5# the MIT License: http://www.opensource.org/licenses/mit-license.php
                    
6
                    
119                line_map = {}
                    
120                for line in module_source.split("\n"):
                    
121                    match = re.match(r'\s*# SOURCE LINE (\d+)', line)
                    
127                    line_map[module_ln] = template_ln
                    
128                template_lines = [line for line in template_source.split("\n")]
                    
129                mods[filename] = (line_map, template_lines)
                    
223    if src:
                    
224        lines = src.split('\n')
                    
225    else:
                    
                
tuto6.htm https://gitlab.com/blackhawkelectronics/enventory | HTML | 165 lines
                    
12<div class="source">
                    
13<pre><code>&lt;?php
                    
14<span class="kw">require(</span><span class="str">'fpdf.php'</span><span class="kw">);
                    
37    </span>$html <span class="kw">= </span>str_replace<span class="kw">(</span><span class="str">"\n"</span><span class="kw">,</span><span class="str">' '</span><span class="kw">,</span>$html<span class="kw">);
                    
38    </span>$a <span class="kw">= </span>preg_split<span class="kw">(</span><span class="str">'/&lt;(.*)&gt;/U'</span><span class="kw">,</span>$html<span class="kw">,-</span>1<span class="kw">,</span>PREG_SPLIT_DELIM_CAPTURE<span class="kw">);
                    
39    foreach(</span>$a <span class="kw">as </span>$i<span class="kw">=&gt;</span>$e<span class="kw">)
                    
137</div>
                    
138<p class='demo'><a href='tuto6.php' target='_blank' class='demo'>[Demo]</a></p>
                    
139The new method to print text is <a href='../doc/write.htm'>Write()</a>. It's very close to <a href='../doc/multicell.htm'>MultiCell()</a>; the differences are:
                    
                
compat.php https://gitlab.com/campus-academy/krowkaramel | PHP | 489 lines
                    
2/**
                    
3 * WordPress implementation for PHP functions either missing from older PHP versions or not included by default.
                    
4 *
                    
35	if ( 'reset' === $utf8_pcre ) {
                    
36		// phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged -- intentional error generated to detect PCRE/u support.
                    
37		$utf8_pcre = @preg_match( '/^./u', 'a' );
                    
126		 */
                    
127		$pieces = preg_split( $regex, $str, 1000, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY );
                    
128
                    
225	 *
                    
226	 * The Hash extension is bundled with PHP by default since PHP 5.1.2.
                    
227	 * However, the extension may be explicitly disabled on select servers.
                    
303	 * However, the Hash extension may be explicitly disabled on select servers.
                    
304	 * As of PHP 7.4.0, the Hash extension is a core PHP extension and can no
                    
305	 * longer be disabled.
                    
                
gecko.js https://gitlab.com/mybbpl/ppm-1.6 | JavaScript | 295 lines
                    
14 * 
                    
15 * Read the full licence: http://www.opensource.org/licenses/lgpl-license.php
                    
16 */
                    
79	
                    
80	// split big files, highlighting parts of it
                    
81	split : function(code,flag) {
                    
114		o = o.replace(/<.*?>/g,'');
                    
115		x = z = this.split(o,flag);
                    
116		x = x.replace(/\n/g,'<br>');
                    
122
                    
123		editor.innerHTML = this.actions.history[this.actions.next()] = (flag=='scroll') ? x : o.split(z).join(x);
                    
124		if(flag!='init') this.findString();
                    
129		words = rangeAndCaret[0].substring(rangeAndCaret[1]-40,rangeAndCaret[1]);
                    
130		words = words.replace(/[\s\n\r\);\W]/g,'\n').split('\n');
                    
131		return words[words.length-1].replace(/[\W]/gi,'').toLowerCase();
                    
                
List.php https://gitlab.com/wuhang2003/typecho | PHP | 402 lines
                    
1<?php
                    
2if (!defined('__TYPECHO_ROOT_DIR__')) exit;
                    
313        $split = $this->levels % $num;
                    
314        echo $args[(0 == $split ? $num : $split) -1];
                    
315    }
                    
                
treeutil.py https://github.com/eean/webrok.git | Python | 487 lines
                    
12#    LGPL: http://www.gnu.org/licenses/lgpl.html
                    
13#    EPL: http://www.eclipse.org/org/documents/epl-v10.php
                    
14#    See the LICENSE file in the project's top-level directory for details.
                    
109    try:
                    
110            pathParts = path.split("/")
                    
111            for part in pathParts:
                    
203        found = True
                    
204        prefixParts = namePrefix.split(".")
                    
205        if len(prefixParts) <= len (nameParts):
                    
                
swekey.auth.lib.php https://gitlab.com/qbarbosa/klindev | PHP | 317 lines
                    
95
                    
96    include_once './libraries/plugins/auth/swekey/authentication.inc.php';
                    
97
                    
138    </script>
                    
139        <?php
                    
140
                    
151
                    
152    include_once "libraries/plugins/auth/swekey/swekey.php";
                    
153
                    
229            }
                    
230            Swekey_SetUnplugUrl(key, "pma_login", url + "?session_to_unset=<?php echo session_id();?>&token=<?php echo $_SESSION[' PMA_token ']; ?>");
                    
231            var otp = Swekey_GetOtp(key, <?php echo '"' . $_SESSION['SWEKEY']['RND_TOKEN'] . '"';?>);
                    
273            {
                    
274                window.open("<?php echo PMA_linkURL('https://www.phpmyadmin.net/auth_key/'); ?>");
                    
275            }
                    
                
audio.php https://gitlab.com/thisishayat/itv-2016 | PHP | 435 lines
                    
1<?php
                    
2
                    
123		$options = array();
                    
124		$data = preg_split( "/\|/", $src );
                    
125		$sound_file = $data[0];
                    
207		if ( isset( $options['artists'] ) ) {
                    
208			$artists = preg_split( '/,/', $options['artists'] );
                    
209			foreach ( $artists as $i => $artist ) {
                    
221		if ( isset( $options['titles'] ) ) {
                    
222			$titles = preg_split( '/,/', $options['titles'] );
                    
223			foreach ( $titles as $i => $title ) {
                    
                
Util.php https://gitlab.com/hop23typhu/bryepoxy | PHP | 476 lines
                    
1<?php
                    
2/**
                    
204	/**
                    
205	 * Example: split_at( '</', '<a></a>' ) => array( '<a>', '</a>' )
                    
206	 *
                    
211	 */
                    
212	public static function split_at( $delim, $str ) {
                    
213		$i = strpos( $str, $delim );
                    
263/**
                    
264 * Splits a list into sets, grouped by the result of running each value through $fn.
                    
265 *
                    
343	if ( 'dbDelta' == $opts['upgrade_method'] ) {
                    
344		require_once ABSPATH . 'wp-admin/includes/upgrade.php';
                    
345		dbDelta( "CREATE TABLE $full_table_name ( $columns ) $table_options" );
                    
                
JsHelper.php https://gitlab.com/tixture55/cakeATM | PHP | 436 lines
                    
4 *
                    
5 * CakePHP :  Rapid Development Framework (http://cakephp.org)
                    
6 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
12 * @copyright     Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
                    
13 * @link          http://cakephp.org CakePHP(tm) Project
                    
14 * @package       Cake.View.Helper
                    
14 * @package       Cake.View.Helper
                    
15 * @since         CakePHP(tm) v 1.2
                    
16 * @license       http://www.opensource.org/licenses/mit-license.php MIT License
                    
92		$engineName = $className;
                    
93		list(, $className) = pluginSplit($className);
                    
94
                    
158 *
                    
159 * @param mixed $val A PHP variable to be converted to JSON
                    
160 * @param bool $quoteString If false, leaves string values unquoted
                    
                
permissions_phpbb.php http://twpug.googlecode.com/svn/trunk/ | PHP | 219 lines
                    
1<?php
                    
2if (empty($lang) || !is_array($lang))
                    
43*		'acl_bug_view'		=> array('lang' => 'Can view bug reports', 'cat' => 'bugs'),
                    
44*		'acl_bug_post'		=> array('lang' => 'Can post bugs', 'cat' => 'post'), // Using a phpBB category here
                    
45*	));
                    
161	'acl_m_lock'	=> array('lang' => '??????', 'cat' => 'topic_actions'),
                    
162	'acl_m_split'	=> array('lang' => '??????', 'cat' => 'topic_actions'),
                    
163	'acl_m_merge'	=> array('lang' => '??????', 'cat' => 'topic_actions'),
                    
174	'acl_a_jabber'		=> array('lang' => '????Jabber??', 'cat' => 'settings'),
                    
175	'acl_a_phpinfo'		=> array('lang' => '????php??', 'cat' => 'settings'),
                    
176
                    
                
inori.vim https://gitlab.com/ngurajeka/vim-config | Vim Script | 218 lines
                    
63call s:highlight("LineNr", "BRIGHT_BLACK", "NONE", "NONE")
                    
64call s:highlight("VertSplit", "BRIGHT_BLACK", "NONE", "NONE")
                    
65call s:highlight("StatusLine", "WHITE", "BRIGHT_BLACK", "NONE")
                    
159
                    
160"" Special for PHP
                    
161hi link phpVarSelector  Purple
                    
161hi link phpVarSelector  Purple
                    
162hi link phpIdentifier   Purple
                    
163hi link phpType         Red
                    
163hi link phpType         Red
                    
164hi link phpRepeat       Orange
                    
165
                    
                
protobuftransport.php https://gitlab.com/neuser/bitrix-core | PHP | 349 lines
                    
1<?php
                    
2
                    
305	 */
                    
306	protected static function splitReceivers(Protobuf\IncomingMessage $message, $maxReceivers)
                    
307	{
                    
                
 

Source

Language