Home
last modified time | relevance | path

Searched refs:preg_match (Results 1 – 25 of 1399) sorted by relevance

12345678910>>...56

/plugin/autlogin/
H A Daction.php544 elseif(preg_match("~w3m~",$user_agent))
556 elseif(preg_match("win16",$user_agent))
586 elseif(preg_match("win32",$user_agent))
628 elseif(preg_match("hp-ux",$user_agent))
636 elseif(preg_match("irix",$user_agent))
652 elseif(preg_match("osf",$user_agent))
656 elseif(preg_match("os/2",$user_agent))
660 elseif(preg_match("plan9",$user_agent))
672 elseif(preg_match("sunos",$user_agent))
688 elseif(preg_match("unix",$user_agent))
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.list-style-type.inc.php21 if (preg_match('/\bnone\b/',$value)) { return LST_NONE; };
22 if (preg_match('/\bdisc\b/',$value)) { return LST_DISC; };
23 if (preg_match('/\bcircle\b/',$value)) { return LST_CIRCLE; };
24 if (preg_match('/\bsquare\b/',$value)) { return LST_SQUARE; };
26 if (preg_match('/\bdecimal\b/',$value)) { return LST_DECIMAL; };
36 if (preg_match('/\bhebrew\b/',$value)) { return LST_DECIMAL; };
37 if (preg_match('/\bgeorgian\b/',$value)) { return LST_DECIMAL; };
38 if (preg_match('/\barmenian\b/',$value)) { return LST_DECIMAL; };
40 if (preg_match('/\bhiragana\b/',$value)) { return LST_DECIMAL; };
41 if (preg_match('/\bkarakana\b/',$value)) { return LST_DECIMAL; };
[all …]
H A Dxhtml.utils.inc.php20 if (!preg_match("#{$open}#is",$html)) {
28 while (preg_match("#{$open}(.*?){$open}#is", $html)) {
32 if (!preg_match("#{$close}#is", $html)) {
59 if (!preg_match("#{$open}#is",$html)) {
61 } elseif (!preg_match("#{$close}#is",$html)) {
62 if (preg_match("#{$obody}#is",$html)) {
78 if (!preg_match("#{$open}#is",$html)) {
79 if (preg_match("#{$chead}#is",$html)) {
85 if (!preg_match("#{$close}#is",$html)) {
236 if (preg_match("#(<)(.*?)(/\s*>)#is",$tag, $matches)) {
[all …]
H A Dcss.parse.inc.php105 if (preg_match("/^(\S.*)\s*>\s*([^\s]+)$/", $raw_selector, $matches)) {
113 if (preg_match("/^(\S.*)\s+([^\s]+)$/", $raw_selector, $matches)) {
120 if (preg_match("/^(.+)\[(".SELECTOR_ATTR_REGEXP.")\]$/", $raw_selector, $matches)) {
126 if (preg_match("/^(.+)\[".SELECTOR_ATTR_VALUE_REGEXP."\]$/", $raw_selector, $matches)) {
132 if (preg_match("/^(.+)\[".SELECTOR_ATTR_VALUE_WORD_REGEXP."\]$/", $raw_selector, $matches)) {
139 if (preg_match("/^([#\.\s\w_-]*):(\w+)$/", $raw_selector, $matches)) {
155 if (preg_match("/^([#\.\s\w_-]+):lang\((\w+)\)$/", $raw_selector, $matches)) {
159 if (preg_match("/^(\S+)(\.\S+)$/", $raw_selector, $matches)) {
170 if (preg_match("/^(\w+)#(".SELECTOR_ID_REGEXP.")$/", $raw_selector, $matches)) {
H A Dcss.font.inc.php22 if (preg_match("/^normal|italic|oblique$/",$value)) { return FONT_VALUE_STYLE; }
23 if (preg_match("/^normal|bold|bolder|lighter|[1-9]00$/",$value)) { return FONT_VALUE_WEIGHT; }
25 if (preg_match("#/#",$value)) { return FONT_VALUE_SIZE; }
26 if (preg_match("#^\d+\.?\d*%$#",$value)) { return FONT_VALUE_SIZE; }
27 …if (preg_match("#^(xx-small|x-small|small|medium|large|x-large|xx-large)$#",$value)) { return FONT…
28 if (preg_match("#^(larger|smaller)$#",$value)) { return FONT_VALUE_SIZE; }
29 if (preg_match("#^(\d*(.\d*)?(pt|pc|in|mm|cm|px|em|ex))$#",$value)) { return FONT_VALUE_SIZE; }
116 …if ($family_running && $family_double_quote && !preg_match('/^[^"]*("[^"]*")*[^"]*$/',$current_val…
118 …} elseif ($family_running && !$family_double_quote && !preg_match("/^[^']*('[^']*')*[^']*$/",$curr…
120 } elseif (!$family_running && !preg_match("/^[^']*('[^']*')*[^']*$/",$current_value)) {
[all …]
H A Dcss.background.position.inc.php64 …if (preg_match("/(".LENGTH_REGEXP."|".PERCENTAGE_REGEXP."|".TEXT_REGEXP."|\b0\b)\s+(".LENGTH_REGEX…
84 if (preg_match("/\b(top)\b/",$value)) { return array(array(50, true), array(0, true)); };
85 if (preg_match("/\b(center)\b/",$value)) { return array(array(50, true), array(50, true)); };
86 if (preg_match("/\b(bottom)\b/",$value)) { return array(array(50, true), array(100, true)); };
87 if (preg_match("/\b(left)\b/",$value)) { return array(array(0, true), array(50, true)); };
88 if (preg_match("/\b(right)\b/",$value)) { return array(array(100, true), array(50, true)); };
90 if (preg_match("/".LENGTH_REGEXP."|".PERCENTAGE_REGEXP."/", $value, $matches)) {
/plugin/mikioplugin/inc/
H A Dpolyfill-ctype.php12 return preg_match('/^[a-zA-Z0-9]+$/', $var);
18 return preg_match('/^[a-zA-Z]+$/', $var);
24 return preg_match('/^[\x00-\x1F\x7F]+$/', $var);
30 return preg_match('/^[0-9]+$/', $var);
36 return preg_match('/^[\x20-\x7E\x80-\xFF]+$/', $var);
42 return preg_match('/^[a-z]+$/', $var);
48 return preg_match('/^[\x20-\x7E\x80-\xFF]+$/', $var);
54 return preg_match('/^[^\w\s]+$/', $var);
60 return preg_match('/^[\r\t\n]+$/', $var);
66 return preg_match('/
[all...]
/plugin/htmlokay/
H A Dsyntax.php121 elseif (preg_match('/<script/i', $match))
142 elseif (preg_match('/<STYLE/i', $match))
163 if (preg_match('/<FORM/i', $match))
167 } elseif (preg_match('/<script/i', $match))
188 } elseif (preg_match('/<STYLE/i', $match))
213 } elseif (preg_match('/<STYLE/i', $match))
222 } elseif (preg_match('/<script/i', $match))
226 } elseif (preg_match('/<(DIV)/i', $match))
248 if (preg_match('/<STYLE/i', $match))
252 } elseif (preg_match('/<(DIV)/i', $match))
[all …]
/plugin/xtermrtf/
H A Dsyntax.php120 preg_match("/{\\\colortbl ;(.*?);}/i", $rtf, $colortbl);
162 if (preg_match("/^cf(.*)/i",$corps[$i],$val)) {
171 else if (preg_match("/^highlight(.*)/i",$corps[$i],$val)) {
180 else if (preg_match("/^par/i",$corps[$i],$val)) {
184 else if (preg_match("/^ulnone/i",$corps[$i],$val)) {
188 else if (preg_match("/^ul/i",$corps[$i],$val)) {
192 else if (preg_match("/^b0/i",$corps[$i],$val)) {
196 else if (preg_match("/^b/i",$corps[$i],$val)) {
200 else if (preg_match("/^i0/i",$corps[$i],$val)) {
204 else if (preg_match("/^i/i",$corps[$i],$val)) {
[all …]
/plugin/findologicxmlexport/vendor/symfony/polyfill-ctype/
H A DCtype.php36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text);
52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text);
68 return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text);
84 return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text);
100 return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text);
116 return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text);
132 return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text);
148 return \is_string($text) && '' !== $text && !preg_match('/[^!-\/\:-@\[-`\{-~]/', $text);
164 return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text);
180 return \is_string($text) && '' !== $text && !preg_match('/[^A-Z]/', $text);
[all …]
/plugin/mdpage/vendor/symfony/polyfill-ctype/
H A DCtype.php36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text);
52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text);
68 return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text);
84 return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text);
100 return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text);
116 return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text);
132 return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text);
148 return \is_string($text) && '' !== $text && !preg_match('/[^!-\/\:-@\[-`\{-~]/', $text);
164 return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text);
180 return \is_string($text) && '' !== $text && !preg_match('/[^A-Z]/', $text);
[all …]
/plugin/combo/vendor/symfony/polyfill-ctype/
H A DCtype.php36 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z0-9]/', $text);
52 return \is_string($text) && '' !== $text && !preg_match('/[^A-Za-z]/', $text);
68 return \is_string($text) && '' !== $text && !preg_match('/[^\x00-\x1f\x7f]/', $text);
84 return \is_string($text) && '' !== $text && !preg_match('/[^0-9]/', $text);
100 return \is_string($text) && '' !== $text && !preg_match('/[^!-~]/', $text);
116 return \is_string($text) && '' !== $text && !preg_match('/[^a-z]/', $text);
132 return \is_string($text) && '' !== $text && !preg_match('/[^ -~]/', $text);
148 return \is_string($text) && '' !== $text && !preg_match('/[^!-\/\:-@\[-`\{-~]/', $text);
164 return \is_string($text) && '' !== $text && !preg_match('/[^\s]/', $text);
180 return \is_string($text) && '' !== $text && !preg_match('/[
[all...]
/plugin/strata/types/
H A Dlink.php14 if(preg_match('/^[a-zA-Z0-9\.]+>{1}.*$/u',$value)) {
19 } elseif(preg_match('/^\\\\\\\\[^\\\\]+?\\\\/u',$value)) {
22 } elseif(preg_match('#^([a-z0-9\-\.+]+?)://#i',$value)) {
25 } elseif(preg_match('<'.PREG_PATTERN_VALID_EMAIL.'>',$value)) {
42 if(!preg_match('/^[a-zA-Z0-9\.]+>{1}.*$/u',$value)
43 && !preg_match('/^\\\\\\\\[^\\\\]+?\\\\/u',$value)
44 && !preg_match('#^([a-z0-9\-\.+]+?)://#i',$value)
45 && !preg_match('<'.PREG_PATTERN_VALID_EMAIL.'>',$value)) {
/plugin/rack/
H A Dsyntax.php128 …if (preg_match('/(wire|cable)\s*guide|pdu|patch|term server|lcd/i',$item['model'])) { $color = '#b…
129 …if (preg_match('/blank/i', $item['model'])) { $color = '#f…
130 …if (preg_match('/netapp|fas\d/i', $item['model'])) { $color = '#0…
131 …if (preg_match('/^Sh(elf)?\s/i', $item['model'])) { $color = '#0…
132 …if (preg_match('/cisco|catalyst|nexus/i', $item['model'])) { $color = '#F…
133 …if (preg_match('/brocade|mds/i', $item['model'])) { $color = '#8…
134 …if (preg_match('/ucs/i', $item['model'])) { $color = '#c…
135 …if (preg_match('/ibm/i', $item['model'])) { $color = '#6…
136 …if (preg_match('/hp/i', $item['model'])) { $color = '#A…
164 if (preg_match("/^\s*#/",$line) || !trim($line)) { continue; } # skip comments & blanks
[all …]
/plugin/icalendar/
H A Dfunctions.php58 if (preg_match($regex_summary, $vevent, $summary)) {
63 if ( preg_match( $regex_dtstart_timezone, $vevent, $timezone ) ) {
70 if ( preg_match( $regex_dtend_timezone, $vevent, $timezone ) ) {
78 if (preg_match($regex_dtstart, $vevent, $dtstart)) {
89 preg_match($regex_dtend, $vevent, $dtend);
99 if (preg_match($regex_alldaystart, $vevent, $alldaystart)) {
107 preg_match($regex_alldayend, $vevent, $alldayend);
117 if (preg_match('/@@@/', $entry['description'])) { continue; }
119 if (preg_match($regex_description, $vevent, $description)) {
124 if (preg_match($regex_location, $vevent, $location)) {
/plugin/markdowku/
H A Dblockquotes.php53 preg_match('/^\n[ \t]*>(?:[ \t>]*>)?[ \t]?/', $match, $quotearg);
70 } elseif (preg_match('/^\#{1,6}[ \t]*.+?[ \t]*\#*/', $quoteinarg)) {
74 } elseif (preg_match('/[ ]{0,2}(?:[ ]?_[ ]?){3,}[ \t]*/', $quoteinarg)
75 or preg_match('/[ ]{0,2}(?:[ ]?-[ ]?){3,}[ \t]*/', $quoteinarg)
76 or preg_match('/[ ]{0,2}(?:[ ]?\*[ ]?){3,}[ \t]*/', $quoteinarg)) {
80 } elseif (preg_match('/^[^\n]+?[ \t]*\n[ \t]*>(?:[ \t>]*>)?[ \t]?=+[ \t]*/', $quoteinarg)
81 … or preg_match('/^[^\n]+?[ \t]*\n[ \t]*>(?:[ \t>]*>)?[ \t]?-+[ \t]*/', $quoteinarg)) {
103 if (preg_match('/^[ \t]/', substr($text, $position)) > 0) {
105 } elseif (preg_match('/^>/', substr($text, $position)) > 0) {
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.audio.mod.php30 if (preg_match('#^IMPM#', $fileheader)) {
32 } elseif (preg_match('#^Extended Module#', $fileheader)) {
34 } elseif (preg_match('#^.{44}SCRM#', $fileheader)) {
36 } elseif (preg_match('#^.{1080}(M\\.K\\.|M!K!|FLT4|FLT8|[5-9]CHN|[1-3][0-9]CH)#', $fileheader)) {
50 if (!preg_match('#^(M.K.|[5-9]CHN|[1-3][0-9]CH)$#', $FormatID)) {
68 if (!preg_match('#^Extended Module$#', $FormatID)) {
86 if (!preg_match('#^SCRM$#', $FormatID)) {
104 if (!preg_match('#^IMPM$#', $FormatID)) {
/plugin/condition/
H A Dbase_tester.php.orig.php55 if(preg_match('`^test_(.+)$`', $m, $r)) $keys[] = $r[1];
208 …if(preg_match('`^([0-9]{4})(-|/)([0-9]{2})(-|/)([0-9]{2})(\s+([0-9]{2}):([0-9]{2})(:([0-9]{2}))?)?…
212 …if(preg_match('`^(([0-9]{2}):([0-9]{2})(:([0-9]{2}))?\s+)?([0-9]{4})(-|/)([0-9]{2})(-|/)([0-9]{2})…
216 …if(preg_match('`^([0-9]{2})(-|/)([0-9]{2})(-|/)([0-9]{4})(\s+([0-9]{2}):([0-9]{2})(:([0-9]{2}))?)?…
220 …if(preg_match('`^(([0-9]{2}):([0-9]{2})(:([0-9]{2}))?\s+)?([0-9]{2})(-|/)([0-9]{2})(-|/)([0-9]{4})…
226 if(preg_match('`^([0-9]{2})(-|/)([0-9]{4})$`', $str, $reg)) {
230 if(preg_match('`^([0-9]{4})(-|/)([0-9]{2})$`', $str, $reg)) {
236 if(preg_match('`^([0-9]{4})$`', $str, $reg)) {
245 if(preg_match('`^([0-9]{2})(:([0-9]{2})(:([0-9]{2}))?)?$`', $str, $reg)) {
251 …if(preg_match('`^[0-9]{2}([0-9]{2})?\s?[ymdhis](\s?[0-9]{2}([0-9]{2})?\s?[ymdhis])*$`', $str, $reg…
[all …]
/plugin/mediasyntax/tools/
H A Ddokuwiki2mediawiki.php47 if (preg_match('/^ *======.*====== *$/',$line))
52 elseif (preg_match('/^ *=====.*===== *$/',$line))
57 elseif (preg_match('/^ *====.*==== *$/',$line))
62 elseif (preg_match('/^ *===.*=== *$/',$line))
67 elseif (preg_match('/^ *==.*== *$/',$line))
76 while (preg_match('/^( )+\*/',$line))
90 while (preg_match('/^( )+\-/',$line))
118 if (preg_match("/^\|/",$line))
131 if ((!preg_match("/^\|/",$line)) && $in_table)
162 while (($y+$z<=count($cells)) && (preg_match("/ *
[all...]
/plugin/avatar/
H A Dsyntax.php38 $ralign = (bool)preg_match('/^ /', $user);
39 $lalign = (bool)preg_match('/ $/', $user);
45 if (preg_match('/^s/', $param)) $size = 20;
46 else if (preg_match('/^m/', $param)) $size = 40;
47 else if (preg_match('/^l/', $param)) $size = 80;
48 else if (preg_match('/^xl/', $param)) $size = 120;
/plugin/jukebox/
H A Dsyntax.php63 if(preg_match('/\bleft\b/i',$params)){
67 if(preg_match('/\bcenter\b/i',$params)){
71 if(preg_match('/\bright\b/i',$params)){
77 if(preg_match('/\bshuffle\b/i',$params)){
83 if(preg_match('/\brepeat\b/i',$params)){
89 if(preg_match('/\bautoplay\b/i',$params)){
143 if(preg_match('/<width>(\d+)<\/width>/',$data,$match)){
148 if(preg_match('/<height>(\d+)<\/height>/',$data,$match)){
/plugin/survey/helper/
H A Dsurvey.php79 if (preg_match('/^ * \* .*$/', $syntaxLine)) {
96 if (preg_match("/\[\[(.*)\]\]/", $lineText, $matches)) {
97 if (preg_match("/^([^|]*)\|(.*)$/", $matches[1], $titleMatches)) {
104 if (preg_match("/^(http|ftp)/", $link)) {
220 preg_match('/^( *) \* (.*)$/', $workLine, $lineMatch);
231 preg_match('/^( *) \* (.*)$/', $workLine, $lineMatch);
235 preg_match('/^( *) \* (.*)$/', $nextLine, $nextLineMatch);
262 preg_match(
/plugin/serverinfos/serverinfos/lib/
H A DElements.class.php25 …IF (preg_match("#2 Duo#i",$infosServeur->getModelCpu())) {echo "<img src='./lib/plugins/serverinfo…
26 …IF (preg_match("#i7#i",$infosServeur->getModelCpu())) {echo "<img src=./lib/plugins/serverinfos/im…
27 …IF (preg_match("#i5#i",$infosServeur->getModelCpu())) {echo "<img src='./lib/plugins/serverinfos/i…
28 …IF (preg_match("#i3#i",$infosServeur->getModelCpu())) {echo "<img src='./lib/plugins/serverinfos/i…
29 …IF (preg_match("#atom#i",$infosServeur->getMarkCpu())) {echo "<img src='./lib/plugins/serverinfos/…
30 …IF (preg_match("#arm#i",$infosServeur->getMarkCpu())) {echo "<img src='./lib/plugins/serverinfos/i…
31 …IF (preg_match("#xeon#i",$infosServeur->getMarkCpu())) {echo "<img src=./lib/plugins/serverinfos/i…
304 IF (preg_match("#min#i",$uptime))
314 …IF (!preg_match("#sec#i",$uptime) AND !preg_match("#min#i",$uptime) AND !preg_match("#day#i",$upti…
327 IF (preg_match("#day#i",$uptime))
[all …]
/plugin/dataplot/
H A Dsyntax.php98 if ( preg_match('/xlabel="([^"]*)"/i', $conf, $match) ) {
102 if ( preg_match('/ylabel="([^"]*)"/i', $conf, $match) ) {
106 if ( preg_match('/xrange=(-?\d*\.\d+(e-?\d+)?:-?\d*\.\d+(e-?\d+)?)/i', $conf, $match) ) {
112 if ( preg_match('/\b(2D|3D)\b/i', $conf, $match) ) {
115 if ( preg_match('/\b(boxes|lines|linespoints|points)\b/i', $conf, $match) ) {
118 if ( preg_match('/\b(smooth)\b/i', $conf, $match) ) {
121 if ( preg_match('/\b(left|center|right)\b/i', $conf, $match) ) {
124 if ( preg_match('/\b(\d+)x(\d+)\b/', $conf, $match) ) {
128 if ( preg_match('/\bwidth=([0-9]+)\b/i', $conf, $match) ) {
131 if ( preg_match('/\bheight=([0-9]+)\b/i', $conf, $match) ) {
[all …]
/plugin/freechat/phpfreechat/misc/
H A Dgenerate-doc.inc.php17 if (preg_match('/class pfcGlobalConfig/',$data,$matches, PREG_OFFSET_CAPTURE, $offset))
21 if (preg_match('/function pfcGlobalConfig/', $data, $matches, PREG_OFFSET_CAPTURE, $offset))
34 if (preg_match('/\/\*\*/', $data, $matches1, PREG_OFFSET_CAPTURE, $offset))
41 preg_match('/\*\//', $data, $matches3, PREG_OFFSET_CAPTURE, $offset))
50 if (preg_match('/\s+\*\s+(.*)/', $data, $matches2, PREG_OFFSET_CAPTURE, $offset))
65 …if (preg_match('/var\s+\$([a-z_]+)\s+=\s+(.*);/is', $data, $matches4, PREG_OFFSET_CAPTURE, $offset…

12345678910>>...56